diff options
| author | Eugene Leviant <eleviant@accesssoftek.com> | 2018-12-24 16:02:48 +0000 |
|---|---|---|
| committer | Eugene Leviant <eleviant@accesssoftek.com> | 2018-12-24 16:02:48 +0000 |
| commit | 4dc3a3f74651d0a248929919b12749d4e85b6c14 (patch) | |
| tree | 4867ea7046ca44fedb0409d327c03acc9cfc4fab /llvm/lib/Transforms | |
| parent | ba9d5cf96194c247c3e423b60a7b0f76457d6599 (diff) | |
| download | bcm5719-llvm-4dc3a3f74651d0a248929919b12749d4e85b6c14.tar.gz bcm5719-llvm-4dc3a3f74651d0a248929919b12749d4e85b6c14.zip | |
[HWASAN] Instrument memorty intrinsics by default
Differential revision: https://reviews.llvm.org/D55926
llvm-svn: 350055
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp index 22c9163bb38..67a0e98cbd5 100644 --- a/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp @@ -155,7 +155,7 @@ static cl::opt<bool> static cl::opt<bool> ClInstrumentMemIntrinsics("hwasan-instrument-mem-intrinsics", cl::desc("instrument memory intrinsics"), - cl::Hidden, cl::init(false)); + cl::Hidden, cl::init(true)); namespace { /// An instrumentation pass implementing detection of addressability bugs |

