File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 12
12
#ifndef CPROVER_ANSI_C_GOTO_CHECK_C_H
13
13
#define CPROVER_ANSI_C_GOTO_CHECK_C_H
14
14
15
+ #include < util/config.h>
16
+
15
17
#include < goto-programs/goto_functions.h>
16
18
17
19
class goto_modelt ;
@@ -50,7 +52,7 @@ void goto_check_c(
50
52
" (assert-to-assume)" \
51
53
" (no-bounds-check)(no-pointer-check)(no-signed-overflow-check)" \
52
54
" (no-pointer-primitive-check)(no-undefined-shift-check)" \
53
- " (no-div-by-zero-check)"
55
+ " (no-div-by-zero-check)" OPT_CONFIG_LIBRARY
54
56
55
57
// clang-format off
56
58
#define HELP_GOTO_CHECK \
@@ -125,7 +127,7 @@ void goto_check_c(
125
127
PARSE_OPTION_OVERRIDE (cmdline, options, " div-by-zero-check" ); \
126
128
PARSE_OPTION_OVERRIDE (cmdline, options, " signed-overflow-check" ); \
127
129
PARSE_OPTION_OVERRIDE (cmdline, options, " undefined-shift-check" ); \
128
- PARSE_OPTION_OVERRIDE (cmdline, options, " pointer-primitive-check" ); \
130
+ PARSE_OPTION_OVERRIDE (cmdline, options, " pointer-primitive-check" ); \
129
131
(void )0
130
132
// clang-format on
131
133
Original file line number Diff line number Diff line change @@ -70,7 +70,8 @@ class symbol_table_baset;
70
70
" {y--no-library} \t disable built-in abstract C library\n "
71
71
72
72
#define OPT_CONFIG_LIBRARY \
73
- " (malloc-fail-assert)(malloc-fail-null)(malloc-may-fail)(no-malloc-may-fail)" \
73
+ " (malloc-fail-assert)(malloc-fail-null)(malloc-may-fail)(no-malloc-may-" \
74
+ " fail)" \
74
75
" (string-abstraction)"
75
76
76
77
#define HELP_CONFIG_LIBRARY \
You can’t perform that action at this time.
0 commit comments