File tree 2 files changed +3
-6
lines changed
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -400,8 +400,7 @@ void unified_difft::output(std::ostream &os) const
400
400
401
401
bool unified_difft::instructions_equal (
402
402
const goto_programt::instructiont &ins1,
403
- const goto_programt::instructiont &ins2,
404
- bool recurse)
403
+ const goto_programt::instructiont &ins2)
405
404
{
406
405
return
407
406
ins1.code ==ins2.code &&
@@ -412,8 +411,7 @@ bool unified_difft::instructions_equal(
412
411
(ins1.targets .empty () ||
413
412
instructions_equal (
414
413
*ins1.get_target (),
415
- *ins2.get_target (),
416
- false ));
414
+ *ins2.get_target ()));
417
415
}
418
416
419
417
const unified_difft::differences_mapt &unified_difft::differences_map () const
Original file line number Diff line number Diff line change @@ -87,8 +87,7 @@ class unified_difft
87
87
88
88
static bool instructions_equal (
89
89
const goto_programt::instructiont &ins1,
90
- const goto_programt::instructiont &ins2,
91
- bool recurse=true );
90
+ const goto_programt::instructiont &ins2);
92
91
93
92
const differences_mapt &differences_map () const ;
94
93
You can’t perform that action at this time.
0 commit comments