Commit 16530be1 authored by Martin Barbella's avatar Martin Barbella Committed by Commit Bot

Disable pointer overflow checks.

These are leading to startup crashes in fuzzing builds. It can be
re-enabled once those are fixed or suppressed.

R=inferno@chromium.org

Change-Id: Ie5c8320bdabfd389fa514d71981f8d10dd6b174e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1978899
Auto-Submit: Martin Barbella <mbarbella@chromium.org>
Reviewed-by: default avatarAbhishek Arya <inferno@chromium.org>
Commit-Queue: Abhishek Arya <inferno@chromium.org>
Cr-Commit-Position: refs/heads/master@{#726914}
parent 86ff5cc7
...@@ -493,7 +493,6 @@ config("ubsan_flags") { ...@@ -493,7 +493,6 @@ config("ubsan_flags") {
"-fsanitize=integer-divide-by-zero", "-fsanitize=integer-divide-by-zero",
"-fsanitize=null", "-fsanitize=null",
"-fsanitize=object-size", "-fsanitize=object-size",
"-fsanitize=pointer-overflow",
"-fsanitize=return", "-fsanitize=return",
"-fsanitize=returns-nonnull-attribute", "-fsanitize=returns-nonnull-attribute",
"-fsanitize=shift-exponent", "-fsanitize=shift-exponent",
...@@ -536,7 +535,6 @@ config("ubsan_security_flags") { ...@@ -536,7 +535,6 @@ config("ubsan_security_flags") {
} }
cflags = [ cflags = [
"-fsanitize=function", "-fsanitize=function",
"-fsanitize=pointer-overflow",
"-fsanitize=shift", "-fsanitize=shift",
"-fsanitize=signed-integer-overflow", "-fsanitize=signed-integer-overflow",
"-fsanitize=vla-bound", "-fsanitize=vla-bound",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment