File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
regression/goto-instrument/typedef4 Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 8
8
* GOTO-ANALYZER: New option --unreachable-functions, --reachable-functions
9
9
* GOTO-INSTRUMENT: New option --undefined-function-is-assume-false
10
10
* GOTO-INSTRUMENT: New option --remove-function-body
11
- * GOTO-INSTRUMENT: New option --use-all-headers
11
+ * GOTO-INSTRUMENT: New option --use-all-headers, changed --use-system-headers to
12
+ --no-system-headers
12
13
13
14
14
15
5.7
Original file line number Diff line number Diff line change 1
1
CORE
2
2
main.c
3
- --dump-c --use-system-headers
3
+ --dump-c
4
4
^EXIT=0$
5
5
^SIGNAL=0$
6
6
--
Original file line number Diff line number Diff line change @@ -621,7 +621,7 @@ int goto_instrument_parse_optionst::doit()
621
621
if (cmdline.isset (" dump-c" ) || cmdline.isset (" dump-cpp" ))
622
622
{
623
623
const bool is_cpp=cmdline.isset (" dump-cpp" );
624
- const bool h_libc=cmdline.isset (" use -system-headers" );
624
+ const bool h_libc=! cmdline.isset (" no -system-headers" );
625
625
const bool h_all=cmdline.isset (" use-all-headers" );
626
626
namespacet ns (symbol_table);
627
627
@@ -1542,7 +1542,7 @@ void goto_instrument_parse_optionst::help()
1542
1542
" --remove-function-body <f> remove the implementation of function <f> (may be repeated)\n "
1543
1543
" \n "
1544
1544
" Other options:\n "
1545
- " --use -system-headers with --dump-c/--dump-cpp: generate C source with libc includes\n " // NOLINT(*)
1545
+ " --no -system-headers with --dump-c/--dump-cpp: generate C source expanding libc includes\n " // NOLINT(*)
1546
1546
" --use-all-headers with --dump-c/--dump-cpp: generate C source with all includes\n " // NOLINT(*)
1547
1547
" --version show version and exit\n "
1548
1548
" --xml-ui use XML-formatted output\n "
Original file line number Diff line number Diff line change 26
26
" (all)" \
27
27
" (document-claims-latex)(document-claims-html)" \
28
28
" (document-properties-latex)(document-properties-html)" \
29
- " (dump-c)(dump-cpp)(use -system-headers)(use-all-headers)(dot)(xml)" \
29
+ " (dump-c)(dump-cpp)(no -system-headers)(use-all-headers)(dot)(xml)" \
30
30
OPT_GOTO_CHECK \
31
31
/* no-X-check are deprecated and ignored */ \
32
32
" (no-bounds-check)(no-pointer-check)(no-div-by-zero-check)" \
You can’t perform that action at this time.
0 commit comments