Skip to content

Commit 9747f61

Browse files
committedDec 13, 2023
Add negative default checks to ignore list of goto-instrument as well
1 parent 3ec5bfd commit 9747f61

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎scripts/check_help.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,15 @@ for t in \
8383
echo "$undoc" | sed 's/^/\\fB/;s/-/\\-/g;s/$/\\fR/' >> man_page_opts
8484
done
8585
;;
86+
# We also need ignore the negative default checks for goto-instrument given
87+
# that it's not processing them (but still ends up importing them by using
88+
# the macro PARSE_OPTIONS_GOTO_CHECK). The rationale for ignoring them is
89+
# similar to the goto-diff entry below.
8690
goto-instrument)
8791
for undoc in \
8892
-document-claims-html -document-claims-latex -show-claims \
89-
-no-simplify ; do
93+
-no-simplify -no-pointer-check -no-bounds-check -no-undefined-shift-check \
94+
-no-pointer-primitive-check -no-div-by-zero-check -no-signed-overflow-check ; do
9095
echo "$undoc" >> help_string
9196
echo "$undoc" | sed 's/^/\\fB/;s/-/\\-/g;s/$/\\fR/' >> man_page_opts
9297
done

0 commit comments

Comments
 (0)
Please sign in to comment.