File tree 2 files changed +20
-5
lines changed
2 files changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -230,6 +230,16 @@ void goto_convert(
230
230
goto_model.symbol_table .swap (symbol_table);
231
231
}
232
232
233
+ void goto_convert (
234
+ goto_modelt &goto_model,
235
+ message_handlert &message_handler)
236
+ {
237
+ goto_convert (
238
+ goto_model.symbol_table ,
239
+ goto_model.goto_functions ,
240
+ message_handler);
241
+ }
242
+
233
243
void goto_convert (
234
244
symbol_tablet &symbol_table,
235
245
goto_functionst &functions,
Original file line number Diff line number Diff line change @@ -21,20 +21,25 @@ Date: June 2003
21
21
void goto_convert (
22
22
symbol_tablet &symbol_table,
23
23
goto_functionst &functions,
24
- message_handlert &message_handler );
24
+ message_handlert &);
25
25
26
- // convert it all!
26
+ // confusing, will go away
27
27
void goto_convert (
28
28
symbol_tablet &symbol_table,
29
29
goto_modelt &dest,
30
- message_handlert &message_handler);
30
+ message_handlert &);
31
+
32
+ // convert it all!
33
+ void goto_convert (
34
+ goto_modelt &,
35
+ message_handlert &);
31
36
32
37
// just convert a specific function
33
38
void goto_convert (
34
39
const irep_idt &identifier,
35
40
symbol_tablet &symbol_table,
36
41
goto_functionst &functions,
37
- message_handlert &message_handler );
42
+ message_handlert &);
38
43
39
44
class goto_convert_functionst :public goto_convertt
40
45
{
@@ -52,7 +57,7 @@ class goto_convert_functionst:public goto_convertt
52
57
protected:
53
58
goto_functionst &functions;
54
59
55
- static bool hide (const goto_programt &goto_program );
60
+ static bool hide (const goto_programt &);
56
61
57
62
//
58
63
// function calls
You can’t perform that action at this time.
0 commit comments