From: Ted Kremenek Date: Wed, 27 Apr 2011 18:53:08 +0000 (+0000) Subject: Update scan-build to '-analyzer-checker debug.Stats' instead of the old '-analyzer... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=251c27b6299a841d97901a014d02e4a62f1b6e8e;p=clang Update scan-build to '-analyzer-checker debug.Stats' instead of the old '-analyzer-stats' -cc1 argument. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130320 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/scan-build/scan-build b/tools/scan-build/scan-build index 86c1744558..ae96bd09a6 100755 --- a/tools/scan-build/scan-build +++ b/tools/scan-build/scan-build @@ -1383,7 +1383,7 @@ if ($AnalyzeHeaders) { push @AnalysesToRun,"-analyzer-opt-analyze-headers"; } if ($AnalyzerStats) { - push @AnalysesToRun, '-analyzer-stats'; + push @AnalysesToRun, '-analyzer-checker', 'debug.Stats'; } if ($MaxLoop > 0) { push @AnalysesToRun, '-analyzer-max-loop ' . $MaxLoop;