File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,8 @@ int goto_instrument_parse_optionst::doit()
201201 ui_message_handler);
202202 }
203203
204- bool unwinding_assertions=cmdline.isset (" unwinding-assertions" );
204+ bool unwinding_assertions = cmdline.isset (" unwinding-assertions" ) ||
205+ !cmdline.isset (" no-unwinding-assertions" );
205206 bool partial_loops=cmdline.isset (" partial-loops" );
206207 bool continue_as_loops=cmdline.isset (" continue-as-loops" );
207208 if (continue_as_loops)
@@ -1996,7 +1997,9 @@ void goto_instrument_parse_optionst::help()
19961997 HELP_UNWINDSET
19971998 " {y--unwindset-file_<file>} \t read unwindset from file\n "
19981999 " {y--partial-loops} \t permit paths with partial loops\n "
1999- " {y--unwinding-assertions} \t generate unwinding assertions\n "
2000+ " {y--unwinding-assertions} \t generate unwinding assertions"
2001+ " (enabled by default)\n "
2002+ " {y--no-unwinding-assertions} \t do not generate unwinding assertions\n "
20002003 " {y--continue-as-loops} \t add loop for remaining iterations after"
20012004 " unwound part\n "
20022005 " {y--k-induction} {uk} \t check loops with k-induction\n "
Original file line number Diff line number Diff line change 6060 OPT_UNWINDSET \
6161 " (unwindset-file):" \
6262 " (unwinding-assertions)(partial-loops)(continue-as-loops)" \
63+ " (no-unwinding-assertions)" \
6364 " (log):" \
6465 " (call-graph)(reachable-call-graph)" \
6566 OPT_INSERT_FINAL_ASSERT_FALSE \
You can’t perform that action at this time.
0 commit comments