summaryrefslogtreecommitdiff
path: root/lib/Transforms/Instrumentation/AddressSanitizer.cpp
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
commit3d150e08aed6fc424236312c7a5f724dde2c7d48 (patch)
tree66cbdfa6b0b7e1e2e6f7673897026257815f61e0 /lib/Transforms/Instrumentation/AddressSanitizer.cpp
parent29682f428e7865da85d974050a75baf4d76cc7e2 (diff)
downloadllvm-3d150e08aed6fc424236312c7a5f724dde2c7d48.tar.gz
llvm-3d150e08aed6fc424236312c7a5f724dde2c7d48.tar.bz2
llvm-3d150e08aed6fc424236312c7a5f724dde2c7d48.tar.xz
[asan] decrease asan-instrumentation-with-call-threshold from 10000 to 7000, see PR17409
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209623 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation/AddressSanitizer.cpp')
-rw-r--r--lib/Transforms/Instrumentation/AddressSanitizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/lib/Transforms/Instrumentation/AddressSanitizer.cpp
index 25acd28189..0617215a7c 100644
--- a/lib/Transforms/Instrumentation/AddressSanitizer.cpp
+++ b/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,