File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -39,14 +39,9 @@ class symex_targett
39
39
// The program counter is an iterator which indicates where the execution
40
40
// is in its program sequence
41
41
goto_programt::const_targett pc;
42
- bool is_set;
43
-
44
- sourcet () : thread_nr(0 ), function(irep_idt()), is_set(false )
45
- {
46
- }
47
42
48
43
sourcet (const irep_idt &_function, goto_programt::const_targett _pc)
49
- : thread_nr(0 ), function(_function), pc(_pc), is_set( true )
44
+ : thread_nr(0 ), function(_function), pc(_pc)
50
45
{
51
46
}
52
47
@@ -55,8 +50,7 @@ class symex_targett
55
50
const goto_programt &_goto_program)
56
51
: thread_nr(0 ),
57
52
function(_function),
58
- pc(_goto_program.instructions.begin()),
59
- is_set(true )
53
+ pc(_goto_program.instructions.begin())
60
54
{
61
55
}
62
56
};
You can’t perform that action at this time.
0 commit comments