Skip to content

Commit 23e01f2

Browse files
authored
Merge pull request #6932 from tautschnig/cleanup/no-show
Data-flow analyzers: don't document show-intervals, show-non-null
2 parents f83fc54 + 0f56bae commit 23e01f2

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

jbmc/src/janalyzer/janalyzer_parse_options.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -759,9 +759,8 @@ void janalyzer_parse_optionst::help()
759759
"\n"
760760
"Domain options:\n"
761761
" --constants constant domain\n"
762-
" --intervals, --show-intervals\n"
763-
" interval domain\n"
764-
" --non-null, --show-non-null non-null domain\n"
762+
" --intervals interval domain\n"
763+
" --non-null non-null domain\n"
765764
" --dependence-graph data and control dependencies between instructions\n" // NOLINT(*)
766765
"\n"
767766
"Output options:\n"

src/goto-analyzer/goto_analyzer_parse_options.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -743,9 +743,8 @@ void goto_analyzer_parse_optionst::help()
743743
"\n"
744744
"Domain options:\n"
745745
" --constants a constant for each variable if possible\n"
746-
" --intervals, --show-intervals\n"
747-
" an interval for each variable\n"
748-
" --non-null, --show-non-null tracks which pointers are non-null\n"
746+
" --intervals an interval for each variable\n"
747+
" --non-null tracks which pointers are non-null\n"
749748
" --dependence-graph data and control dependencies between instructions\n" // NOLINT(*)
750749
" --vsd, --variable-sensitivity\n"
751750
" a configurable non-relational domain\n"

0 commit comments

Comments
 (0)