Skip to content

Commit e139ec3

Browse files
jckingmagicus
authored andcommittedJan 17, 2023
8300069: Left shift of negative value in share/adlc/dict2.cpp
Reviewed-by: ihse, kbarrett
1 parent fb147aa commit e139ec3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎make/autoconf/jdk-options.m4

+3-2
Original file line numberDiff line numberDiff line change
@@ -453,8 +453,9 @@ AC_DEFUN_ONCE([JDKOPT_SETUP_UNDEFINED_BEHAVIOR_SANITIZER],
453453
[
454454
# GCC reports lots of likely false positives for stringop-truncation and format-overflow.
455455
# Silence them for now.
456-
UBSAN_CFLAGS="-fsanitize=undefined -fsanitize=float-divide-by-zero -Wno-stringop-truncation -Wno-format-overflow -fno-omit-frame-pointer -DUNDEFINED_BEHAVIOR_SANITIZER"
457-
UBSAN_LDFLAGS="-fsanitize=undefined -fsanitize=float-divide-by-zero"
456+
UBSAN_CHECKS="-fsanitize=undefined -fsanitize=float-divide-by-zero -fno-sanitize=shift-base"
457+
UBSAN_CFLAGS="$UBSAN_CHECKS -Wno-stringop-truncation -Wno-format-overflow -fno-omit-frame-pointer -DUNDEFINED_BEHAVIOR_SANITIZER"
458+
UBSAN_LDFLAGS="$UBSAN_CHECKS"
458459
UTIL_ARG_ENABLE(NAME: ubsan, DEFAULT: false, RESULT: UBSAN_ENABLED,
459460
DESC: [enable UndefinedBehaviorSanitizer],
460461
CHECK_AVAILABLE: [

0 commit comments

Comments
 (0)
Please sign in to comment.