From: Kostya Serebryany Date: Tue, 10 Mar 2015 01:11:53 +0000 (+0000) Subject: [sanitizer] decrease sanitizer-coverage-block-threshold from 1000 to 500 as another... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a7b107bc826153fdaf6f3db179e3a1d4c91b948f;p=llvm [sanitizer] decrease sanitizer-coverage-block-threshold from 1000 to 500 as another horrible workaround for PR17409 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231733 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Instrumentation/SanitizerCoverage.cpp b/lib/Transforms/Instrumentation/SanitizerCoverage.cpp index 6000fd057da..fcb6ab04f5e 100644 --- a/lib/Transforms/Instrumentation/SanitizerCoverage.cpp +++ b/lib/Transforms/Instrumentation/SanitizerCoverage.cpp @@ -72,7 +72,7 @@ static cl::opt 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 ClExperimentalTracing("sanitizer-coverage-experimental-tracing",