We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fb4868 commit 7e1110cCopy full SHA for 7e1110c
src/goto-instrument/goto_instrument_parse_options.cpp
@@ -575,10 +575,14 @@ int goto_instrument_parse_optionst::doit()
575
return CPROVER_EXIT_SUCCESS;
576
}
577
578
- if(cmdline.isset("show-goto-functions"))
+ if(
579
+ cmdline.isset("show-goto-functions") ||
580
+ cmdline.isset("list-goto-functions"))
581
{
- namespacet ns(goto_model.symbol_table);
- show_goto_functions(goto_model, get_ui());
582
+ show_goto_functions(
583
+ goto_model,
584
+ ui_message_handler.get_ui(),
585
+ cmdline.isset("list-goto-functions"));
586
587
588
0 commit comments