We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9914cb3 commit a810101Copy full SHA for a810101
src/cbmc/cbmc_parse_options.cpp
@@ -326,10 +326,11 @@ void cbmc_parse_optionst::get_command_line_options(optionst &options)
326
// Enable flags that in combination provide analysis with no surprises
327
// (expected checks and no unsoundness by missing checks).
328
if (!cmdline.isset("no-standard-checks") && options.get_bool_option("standard-checks"))
329
+ {
330
set_default_analysis_flags(options);
-
331
- PARSE_OPTIONS_GOTO_CHECK_DEFAULTS_OVERRIDE(cmdline, options);
332
+ PARSE_OPTIONS_GOTO_CHECK_DEFAULTS_OVERRIDE(cmdline, options);
+ }
333
+
334
// all (non-default) checks supported by goto_check
335
PARSE_OPTIONS_GOTO_CHECK(cmdline, options);
336
0 commit comments