summaryrefslogtreecommitdiff
path: root/lib/Transforms/Instrumentation
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2014-02-27 12:56:20 +0000
committerKostya Serebryany <kcc@google.com>2014-02-27 12:56:20 +0000
commit124bbea6cddd5598587911b763dfbf9e48c84f2b (patch)
tree8e76e03c2b350c45c07c520b37e36e543aa54c16 /lib/Transforms/Instrumentation
parent9b3d3a96a85fb6a908a76e0cbd5d23375838ae4f (diff)
downloadllvm-124bbea6cddd5598587911b763dfbf9e48c84f2b.tar.gz
llvm-124bbea6cddd5598587911b763dfbf9e48c84f2b.tar.bz2
llvm-124bbea6cddd5598587911b763dfbf9e48c84f2b.tar.xz
[asan] disable asan-detect-invalid-pointer-pair (was enabled by mistake)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202390 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation')
-rw-r--r--lib/Transforms/Instrumentation/AddressSanitizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/lib/Transforms/Instrumentation/AddressSanitizer.cpp
index babe02ba13..e971e6783f 100644
--- a/lib/Transforms/Instrumentation/AddressSanitizer.cpp
+++ b/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -142,7 +142,7 @@ static cl::opt<bool> ClMemIntrin("asan-memintrin",
cl::desc("Handle memset/memcpy/memmove"), cl::Hidden, cl::init(true));
static cl::opt<bool> ClInvalidPointerPairs("asan-detect-invalid-pointer-pair",
cl::desc("Instrument <, <=, >, >=, - with pointer operands"),
- cl::Hidden, cl::init(true));
+ cl::Hidden, cl::init(false));
static cl::opt<unsigned> ClRealignStack("asan-realign-stack",
cl::desc("Realign stack to the value of this flag (power of two)"),
cl::Hidden, cl::init(32));