From: Kostya Serebryany Date: Thu, 27 Feb 2014 12:56:20 +0000 (+0000) Subject: [asan] disable asan-detect-invalid-pointer-pair (was enabled by mistake) X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;ds=sidebyside;h=124bbea6cddd5598587911b763dfbf9e48c84f2b;p=oota-llvm.git [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 --- diff --git a/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/lib/Transforms/Instrumentation/AddressSanitizer.cpp index babe02ba13f..e971e6783f9 100644 --- a/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/lib/Transforms/Instrumentation/AddressSanitizer.cpp @@ -142,7 +142,7 @@ static cl::opt ClMemIntrin("asan-memintrin", cl::desc("Handle memset/memcpy/memmove"), cl::Hidden, cl::init(true)); static cl::opt 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 ClRealignStack("asan-realign-stack", cl::desc("Realign stack to the value of this flag (power of two)"), cl::Hidden, cl::init(32));