Update scan-build to '-analyzer-checker debug.Stats' instead of the old '-analyzer-stats' -cc1 argument.

llvm-svn: 130320
This commit is contained in:
Ted Kremenek 2011-04-27 18:53:08 +00:00
parent d5c06a68b5
commit f26109664e
1 changed files with 1 additions and 1 deletions

View File

@ -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;