diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2019-08-26 21:44:55 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2019-08-26 21:44:55 +0000 |
commit | ed4fefb0df94799d902fadeabef4161f729ff8ca (patch) | |
tree | 7ee29dc955191420164358cfd23fe8452c6f7640 /llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp | |
parent | 8853ac7e022c0b65fee6f33407ea28f3701446fd (diff) | |
download | bcm5719-llvm-ed4fefb0df94799d902fadeabef4161f729ff8ca.tar.gz bcm5719-llvm-ed4fefb0df94799d902fadeabef4161f729ff8ca.zip |
[hwasan] Fix test failure in r369721.
Try harder to emulate "old runtime" in the test.
To get the old behavior with the new runtime library, we need both
disable personality function wrapping and enable landing pad
instrumentation.
llvm-svn: 369977
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp index 8a1129aa9a0..ca67eee1bef 100644 --- a/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp @@ -164,11 +164,12 @@ static cl::opt<bool> static cl::opt<bool> ClInstrumentLandingPads("hwasan-instrument-landing-pads", cl::desc("instrument landing pads"), cl::Hidden, - cl::init(false)); + cl::init(false), cl::ZeroOrMore); static cl::opt<bool> ClInstrumentPersonalityFunctions( "hwasan-instrument-personality-functions", - cl::desc("instrument personality functions"), cl::Hidden, cl::init(false)); + cl::desc("instrument personality functions"), cl::Hidden, cl::init(false), + cl::ZeroOrMore); static cl::opt<bool> ClInlineAllChecks("hwasan-inline-all-checks", cl::desc("inline all checks"), |