File tree 2 files changed +0
-3
lines changed 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -375,7 +375,6 @@ class goto_symex_statet final
375
375
// / \brief This state is saved, with the PC pointing to the next instruction
376
376
// / of a GOTO
377
377
bool has_saved_next_instruction;
378
- bool saved_target_is_backwards;
379
378
380
379
private:
381
380
// / \brief Dangerous, do not use
Original file line number Diff line number Diff line change @@ -184,15 +184,13 @@ void goto_symext::symex_goto(statet &state)
184
184
path_storaget::patht next_instruction (target, state);
185
185
next_instruction.state .saved_target = state_pc;
186
186
next_instruction.state .has_saved_next_instruction = true ;
187
- next_instruction.state .saved_target_is_backwards = backward;
188
187
189
188
path_storaget::patht jump_target (target, state);
190
189
jump_target.state .saved_target = new_state_pc;
191
190
jump_target.state .has_saved_jump_target = true ;
192
191
// `forward` tells us where the branch we're _currently_ executing is
193
192
// pointing to; this needs to be inverted for the branch that we're saving,
194
193
// so let its truth value for `backwards` be the same as ours for `forward`.
195
- jump_target.state .saved_target_is_backwards = !backward;
196
194
197
195
log .debug () << " Saving next instruction '"
198
196
<< next_instruction.state .saved_target ->source_location << " '"
You can’t perform that action at this time.
0 commit comments