forked from diffblue/cbmc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-enable old function signatures for test-gen compat
- Loading branch information
Showing
7 changed files
with
50 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,10 +19,18 @@ Author: Daniel Kroening, [email protected] | |
#include <util/symbol_table.h> | ||
|
||
class goto_modelt; | ||
class symbol_tablet; | ||
class goto_functionst; | ||
|
||
void remove_static_init_loops( | ||
const goto_modelt &, | ||
optionst &, | ||
message_handlert &); | ||
|
||
void remove_static_init_loops( | ||
const symbol_tablet &symbol_table, | ||
const goto_functionst &goto_functions, | ||
optionst &, | ||
message_handlert &); | ||
|
||
#endif // CPROVER_GOTO_PROGRAMS_REMOVE_STATIC_INIT_LOOPS_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,16 @@ Author: Daniel Kroening, [email protected] | |
|
||
class namespacet; | ||
class goto_modelt; | ||
class symbol_tablet; | ||
class goto_functionst; | ||
|
||
void show_properties( | ||
const goto_modelt &, | ||
ui_message_handlert::uit ui); | ||
|
||
void show_properties( | ||
const namespacet &ns, | ||
ui_message_handlert::uit ui, | ||
const goto_functionst &goto_functions); | ||
|
||
#endif // CPROVER_GOTO_PROGRAMS_SHOW_PROPERTIES_H |