[asan] disable asan-detect-invalid-pointer-pair (was enabled by mistake)
authorKostya Serebryany <kcc@google.com>
Thu, 27 Feb 2014 12:56:20 +0000 (12:56 +0000)
committerKostya Serebryany <kcc@google.com>
Thu, 27 Feb 2014 12:56:20 +0000 (12:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202390 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Instrumentation/AddressSanitizer.cpp

index babe02ba13f140d780f06e8e4b9cbd46437e3a40..e971e6783f90283c303a240f6391ac20ec79ffa8 100644 (file)
@@ -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));