Skip to content

Commit 31f43f6

Browse files
author
Enrico Steffinlongo
committed
Added malloc failure model to goto-analyzer
1 parent a599f26 commit 31f43f6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/ansi-c/goto_check_c.h

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Author: Daniel Kroening, [email protected]
1313
#define CPROVER_ANSI_C_GOTO_CHECK_C_H
1414

1515
#include <goto-programs/goto_functions.h>
16+
#include <util/config.h>
1617

1718
class goto_modelt;
1819
class namespacet;
@@ -50,7 +51,8 @@ void goto_check_c(
5051
"(assert-to-assume)" \
5152
"(no-bounds-check)(no-pointer-check)(no-signed-overflow-check)" \
5253
"(no-pointer-primitive-check)(no-undefined-shift-check)" \
53-
"(no-div-by-zero-check)"
54+
"(no-div-by-zero-check)" \
55+
OPT_CONFIG_LIBRARY
5456

5557
// clang-format off
5658
#define HELP_GOTO_CHECK \
@@ -125,7 +127,7 @@ void goto_check_c(
125127
PARSE_OPTION_OVERRIDE(cmdline, options, "div-by-zero-check"); \
126128
PARSE_OPTION_OVERRIDE(cmdline, options, "signed-overflow-check"); \
127129
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"); \
129131
(void)0
130132
// clang-format on
131133

0 commit comments

Comments
 (0)