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.
brief list of symbols, from language_uit
- Loading branch information
Daniel Kroening
committed
Sep 8, 2017
1 parent
fc4d44a
commit e4498ca
Showing
3 changed files
with
88 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,7 @@ Author: Daniel Kroening, [email protected] | |
#include <goto-programs/remove_unused_functions.h> | ||
#include <goto-programs/parameter_assignments.h> | ||
#include <goto-programs/slice_global_inits.h> | ||
#include <goto-programs/show_symbol_table.h> | ||
|
||
#include <pointer-analysis/value_set_analysis.h> | ||
#include <pointer-analysis/goto_program_dereference.h> | ||
|
@@ -467,7 +468,7 @@ int goto_instrument_parse_optionst::doit() | |
|
||
if(cmdline.isset("show-symbol-table")) | ||
{ | ||
show_symbol_table(goto_model, get_ui()); | ||
::show_symbol_table(goto_model, get_ui()); | ||
return 0; | ||
} | ||
|
||
|
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 |
---|---|---|
|
@@ -14,9 +14,22 @@ Author: Daniel Kroening, [email protected] | |
|
||
#include <util/ui_message.h> | ||
|
||
class symbol_tablet; | ||
class goto_modelt; | ||
|
||
void show_symbol_table( | ||
const symbol_tablet &, | ||
ui_message_handlert::uit ui); | ||
|
||
void show_symbol_table_brief( | ||
const symbol_tablet &, | ||
ui_message_handlert::uit ui); | ||
|
||
void show_symbol_table( | ||
const goto_modelt &, | ||
ui_message_handlert::uit ui); | ||
|
||
void show_symbol_table_brief( | ||
const goto_modelt &, | ||
ui_message_handlert::uit ui); | ||
|
||
|