File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -1799,7 +1799,7 @@ void goto_instrument_parse_optionst::help()
1799
1799
" --race-check add floating-point data race checks\n "
1800
1800
" \n "
1801
1801
" Semantic transformations:\n "
1802
- HELP_NONDET_VOLATILE
1802
+ << HELP_NONDET_VOLATILE <<
1803
1803
" --unwind <n> unwinds the loops <n> times\n "
1804
1804
" --unwindset L:B,... unwind loop L with a bound of B\n "
1805
1805
" --unwindset-file <file> read unwindset from file\n "
Original file line number Diff line number Diff line change @@ -28,14 +28,15 @@ class optionst;
28
28
" (" NONDET_VOLATILE_MODEL_OPT " ):"
29
29
30
30
#define HELP_NONDET_VOLATILE \
31
- " --" NONDET_VOLATILE_OPT " makes reads from volatile variables " \
32
- " non-deterministic\n " \
33
- " --" NONDET_VOLATILE_VARIABLE_OPT " <variable>\n " \
34
- " makes reads from given volatile variable " \
35
- " non-deterministic\n " \
36
- " --" NONDET_VOLATILE_MODEL_OPT " <variable>:<model>\n " \
37
- " models reads from given volatile variable " \
38
- " by a call to the given model\n "
31
+ help_entry ( \
32
+ " --" NONDET_VOLATILE_OPT, \
33
+ " makes reads from volatile variables non-deterministic" ) << \
34
+ help_entry( \
35
+ " --" NONDET_VOLATILE_VARIABLE_OPT " <variable>" , \
36
+ " makes reads from given volatile variable non-deterministic" ) << \
37
+ help_entry( \
38
+ " --" NONDET_VOLATILE_MODEL_OPT " <variable>:<model>" , \
39
+ " models reads from given volatile variable by a call to the given model" )
39
40
// clang-format on
40
41
41
42
void parse_nondet_volatile_options(const cmdlinet &cmdline, optionst &options);
You can’t perform that action at this time.
0 commit comments