Fix an inverse boolean and unnecessary new line in warning output from AnalyzerStatsChecker.

llvm-svn: 114581
This commit is contained in:
Tom Care 2010-09-22 21:07:51 +00:00
parent 1f57cc4a59
commit 14fefab721
1 changed files with 2 additions and 2 deletions

View File

@ -95,9 +95,9 @@ void AnalyzerStatsChecker::VisitEndAnalysis(ExplodedGraph &G,
output << " -> Total CFGBlocks: " << total << " | Unreachable CFGBlocks: "
<< unreachable << " | Aborted Block: "
<< (Eng.wasBlockAborted() ? "no" : "yes")
<< (Eng.wasBlockAborted() ? "yes" : "no")
<< " | Empty WorkList: "
<< (Eng.hasEmptyWorkList() ? "yes" : "no") << "\n";
<< (Eng.hasEmptyWorkList() ? "yes" : "no");
B.EmitBasicReport("Analyzer Statistics", "Internal Statistics", output.str(),
D->getLocation());