File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -39,9 +39,10 @@ void goto_check(
39
39
" (pointer-overflow-check)(conversion-check)(undefined-shift-check)" \
40
40
" (float-overflow-check)(nan-check)(no-built-in-assertions)"
41
41
42
+ // clang-format off
42
43
#define HELP_GOTO_CHECK \
43
44
" --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) */ \
45
46
" --memory-leak-check enable memory leak checks\n " \
46
47
" --div-by-zero-check enable division by zero checks\n " \
47
48
" --signed-overflow-check enable signed arithmetic over- and underflow checks\n " /* NOLINT(whitespace/line_length) */ \
@@ -52,6 +53,7 @@ void goto_check(
52
53
" --float-overflow-check check floating-point for +/-Inf\n " \
53
54
" --nan-check check floating-point for NaN\n " \
54
55
" --no-built-in-assertions ignore assertions in built-in library\n " \
56
+ // clang-format on
55
57
56
58
#define PARSE_OPTIONS_GOTO_CHECK (cmdline, options ) \
57
59
options.set_option(" bounds-check" , cmdline.isset(" bounds-check" )); \
You can’t perform that action at this time.
0 commit comments