Skip to content

Commit 300742c

Browse files
author
Daniel Kroening
authored
Merge pull request #3211 from diffblue/pointer-check-help
do not mention Java in help for --pointer-check
2 parents 35e2848 + bd6283b commit 300742c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/analyses/goto_check.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ void goto_check(
3939
"(pointer-overflow-check)(conversion-check)(undefined-shift-check)" \
4040
"(float-overflow-check)(nan-check)(no-built-in-assertions)"
4141

42+
// clang-format off
4243
#define HELP_GOTO_CHECK \
4344
" --bounds-check enable array bounds checks\n" \
44-
" --pointer-check enable pointer checks (always enabled for Java)\n" /* NOLINT(whitespace/line_length) */ \
45+
" --pointer-check enable pointer checks\n" /* NOLINT(whitespace/line_length) */ \
4546
" --memory-leak-check enable memory leak checks\n" \
4647
" --div-by-zero-check enable division by zero checks\n" \
4748
" --signed-overflow-check enable signed arithmetic over- and underflow checks\n" /* NOLINT(whitespace/line_length) */ \
@@ -52,6 +53,7 @@ void goto_check(
5253
" --float-overflow-check check floating-point for +/-Inf\n" \
5354
" --nan-check check floating-point for NaN\n" \
5455
" --no-built-in-assertions ignore assertions in built-in library\n" \
56+
// clang-format on
5557

5658
#define PARSE_OPTIONS_GOTO_CHECK(cmdline, options) \
5759
options.set_option("bounds-check", cmdline.isset("bounds-check")); \

0 commit comments

Comments
 (0)