File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ Function: goto_convertt::finish_gotos
103
103
104
104
\*******************************************************************/
105
105
106
- void goto_convertt::finish_gotos (goto_programt &dest)
106
+ void goto_convertt::finish_gotos (goto_programt &dest, const irep_idt &mode )
107
107
{
108
108
for (const auto &g_it : targets.gotos )
109
109
{
@@ -200,7 +200,7 @@ void goto_convertt::finish_gotos(goto_programt &dest)
200
200
unwind_to_size,
201
201
destructor_code,
202
202
goto_stack,
203
- symbol_table. lookup (i. function )-> mode );
203
+ mode);
204
204
dest.destructive_insert (g_it.first , destructor_code);
205
205
// This should leave iterators intact, as long as
206
206
// goto_programt::instructionst is std::list.
@@ -313,7 +313,7 @@ void goto_convertt::goto_convert_rec(
313
313
PRECONDITION (guarded_gotos.empty ());
314
314
convert (code, dest, mode);
315
315
316
- finish_gotos (dest);
316
+ finish_gotos (dest, mode );
317
317
finish_computed_gotos (dest);
318
318
finish_guarded_gotos (dest);
319
319
finish_catch_push_targets (dest);
Original file line number Diff line number Diff line change @@ -361,7 +361,7 @@ class goto_convertt:public messaget
361
361
// gotos
362
362
//
363
363
364
- void finish_gotos (goto_programt &dest);
364
+ void finish_gotos (goto_programt &dest, const irep_idt &mode );
365
365
void finish_computed_gotos (goto_programt &dest);
366
366
void finish_guarded_gotos (goto_programt &dest);
367
367
You can’t perform that action at this time.
0 commit comments