summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2014-05-26 11:57:16 +0000
committerKostya Serebryany <kcc@google.com>2014-05-26 11:57:16 +0000
commit4d237a850324571ff4858eeb0ec88bf227aacbed (patch)
treecf30b8478c8080a077b9427350f32481bf0a3816 /llvm/lib/Transforms
parent9011eb81cf8d93b863e041a278be4dcacf578241 (diff)
downloadbcm5719-llvm-4d237a850324571ff4858eeb0ec88bf227aacbed.tar.gz
bcm5719-llvm-4d237a850324571ff4858eeb0ec88bf227aacbed.zip
[asan] decrease asan-instrumentation-with-call-threshold from 10000 to 7000, see PR17409
llvm-svn: 209623
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r--llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
index 25acd281893..0617215a7c0 100644
--- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
+++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -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,
OpenPOWER on IntegriCloud