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 492152e commit a816370Copy full SHA for a816370
src/goto-instrument/goto_instrument_parse_options.cpp
@@ -898,14 +898,16 @@ void goto_instrument_parse_optionst::get_goto_program()
898
{
899
status() << "Reading GOTO program from `" << cmdline.args[0] << "'" << eom;
900
901
+ config.set(cmdline);
902
+
903
auto result = read_goto_binary(cmdline.args[0], get_message_handler());
904
905
if(!result.has_value())
906
throw 0;
907
908
goto_model = std::move(result.value());
909
- config.set(cmdline);
910
+ config.set_from_symbol_table(goto_model.symbol_table);
911
}
912
913
void goto_instrument_parse_optionst::instrument_goto_program()
0 commit comments