Skip to content

Commit ff758d3

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

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/ansi-c/goto_check_c.h

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

15+
#include <util/config.h>
16+
1517
#include <goto-programs/goto_functions.h>
1618

1719
class goto_modelt;
@@ -50,7 +52,7 @@ void goto_check_c(
5052
"(assert-to-assume)" \
5153
"(no-bounds-check)(no-pointer-check)(no-signed-overflow-check)" \
5254
"(no-pointer-primitive-check)(no-undefined-shift-check)" \
53-
"(no-div-by-zero-check)"
55+
"(no-div-by-zero-check)" 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

src/util/config.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ class symbol_table_baset;
7070
" {y--no-library} \t disable built-in abstract C library\n"
7171

7272
#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)" \
7475
"(string-abstraction)"
7576

7677
#define HELP_CONFIG_LIBRARY \

0 commit comments

Comments
 (0)