diff options
author | Kostya Serebryany <kcc@google.com> | 2015-03-10 01:11:53 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2015-03-10 01:11:53 +0000 |
commit | 8fb05ac9987bb2fe210e3d0d02ef762793524c45 (patch) | |
tree | 3f661d7aa5c80bf185b3872ab326afbce14536f4 /llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp | |
parent | 0e9a50f5b57198f6649e7c47814611e6f8c86322 (diff) | |
download | llvm-8fb05ac9987bb2fe210e3d0d02ef762793524c45.zip llvm-8fb05ac9987bb2fe210e3d0d02ef762793524c45.tar.gz llvm-8fb05ac9987bb2fe210e3d0d02ef762793524c45.tar.bz2 |
[sanitizer] decrease sanitizer-coverage-block-threshold from 1000 to 500 as another horrible workaround for PR17409
llvm-svn: 231733
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp b/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp index 6000fd0..fcb6ab0 100644 --- a/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp +++ b/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp @@ -72,7 +72,7 @@ static cl::opt<unsigned> ClCoverageBlockThreshold( "sanitizer-coverage-block-threshold", cl::desc("Use a callback with a guard check inside it if there are" " more than this number of blocks."), - cl::Hidden, cl::init(1000)); + cl::Hidden, cl::init(500)); static cl::opt<bool> ClExperimentalTracing("sanitizer-coverage-experimental-tracing", |