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 2fabbd4 commit 0fb4868Copy full SHA for 0fb4868
src/goto-analyzer/goto_analyzer_parse_options.cpp
@@ -431,9 +431,15 @@ int goto_analyzer_parse_optionst::doit()
431
}
432
433
// show it?
434
- if(cmdline.isset("show-goto-functions"))
435
- {
436
- show_goto_functions(goto_model, get_ui());
+ if(
+ cmdline.isset("show-goto-functions") ||
+ cmdline.isset("list-goto-functions"))
437
+ {
438
+ show_goto_functions(
439
+ goto_model,
440
+ get_message_handler(),
441
+ get_ui(),
442
+ cmdline.isset("list-goto-functions"));
443
return CPROVER_EXIT_SUCCESS;
444
445
0 commit comments