diff options
| -rw-r--r-- | cc/sanitize.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cc/sanitize.go b/cc/sanitize.go index 5c68a9625..6c38355ba 100644 --- a/cc/sanitize.go +++ b/cc/sanitize.go @@ -56,6 +56,10 @@ var ( // higher number of "optimized out" stack variables. // b/112437883. "-instcombine-lower-dbg-declare=0", + // TODO(b/159343917): HWASan and GlobalISel don't play nicely, and + // GlobalISel is the default at -O0 on aarch64. + "--aarch64-enable-global-isel-at-O=-1", + "-fast-isel=false", "-hwasan-use-after-scope=1", "-dom-tree-reachability-max-bbs-to-explore=128", } |