[llvm] r209623 - [asan] decrease asan-instrumentation-with-call-threshold from 10000 to 7000, see PR17409

Kostya Serebryany kcc at google.com
Mon May 26 04:57:17 PDT 2014


Author: kcc
Date: Mon May 26 06:57:16 2014
New Revision: 209623

URL: http://llvm.org/viewvc/llvm-project?rev=209623&view=rev
Log:
[asan] decrease asan-instrumentation-with-call-threshold from 10000 to 7000, see PR17409

Modified:
    llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp

Modified: llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp?rev=209623&r1=209622&r2=209623&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp (original)
+++ llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp Mon May 26 06:57:16 2014
@@ -156,7 +156,7 @@ static cl::opt<int> ClInstrumentationWit
        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,





More information about the llvm-commits mailing list