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 c04c4ab commit b200bbdCopy full SHA for b200bbd
src/cbmc/parseoptions.cpp
@@ -221,8 +221,11 @@ void cbmc_parseoptionst::get_command_line_options(optionst &options)
221
options.set_option("error-label", cmdline.getval("error-label"));
222
223
// generate unwinding assertions
224
- options.set_option("unwinding-assertions",
225
- !cmdline.isset("no-unwinding-assertions"));
+ if(cmdline.isset("cover-assertions"))
+ options.set_option("unwinding-assertions", false);
226
+ else
227
+ options.set_option("unwinding-assertions",
228
+ !cmdline.isset("no-unwinding-assertions"));
229
230
// generate unwinding assumptions otherwise
231
options.set_option("partial-loops",
0 commit comments