[asan] decrease asan-instrumentation-with-call-threshold from 10000 to 7000, see...
authorKostya Serebryany <kcc@google.com>
Mon, 26 May 2014 11:57:16 +0000 (11:57 +0000)
committerKostya Serebryany <kcc@google.com>
Mon, 26 May 2014 11:57:16 +0000 (11:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209623 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Instrumentation/AddressSanitizer.cpp

index 25acd2818935d8b681fcf19818feaf3d472cf40b..0617215a7c092d939c939c03da26cf2179fa2e1e 100644 (file)
@@ -156,7 +156,7 @@ static cl::opt<int> ClInstrumentationWithCallsThreshold(
        cl::desc("If the function being instrumented contains more than "
                 "this number of memory accesses, use callbacks instead of "
                 "inline checks (-1 means never use callbacks)."),
-       cl::Hidden, cl::init(10000));
+       cl::Hidden, cl::init(7000));
 static cl::opt<std::string> ClMemoryAccessCallbackPrefix(
        "asan-memory-access-callback-prefix",
        cl::desc("Prefix for memory access callbacks"), cl::Hidden,