Skip to content

Commit 164e09d

Browse files
committed
[hwasan] Default -hwasan-use-stack-safety to off.
This very occasionally causes to an assertion failure in the compiler. Turning off until we can get to the bottom of this. Reviewed By: hctim Differential Revision: https://reviews.llvm.org/D108282
1 parent e0ff1e9 commit 164e09d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ static cl::opt<bool> ClInstrumentStack("hwasan-instrument-stack",
115115
cl::Hidden, cl::init(true));
116116

117117
static cl::opt<bool>
118-
ClUseStackSafety("hwasan-use-stack-safety", cl::Hidden, cl::init(true),
118+
ClUseStackSafety("hwasan-use-stack-safety", cl::Hidden, cl::init(false),
119119
cl::Hidden, cl::desc("Use Stack Safety analysis results"),
120120
cl::Optional);
121121

0 commit comments

Comments
 (0)