aboutsummaryrefslogtreecommitdiff
path: root/lib/Checker/AnalyzerStatsChecker.cpp
diff options
context:
space:
mode:
authorTom Care <tom.care@uqconnect.edu.au>2010-09-22 21:07:51 +0000
committerTom Care <tom.care@uqconnect.edu.au>2010-09-22 21:07:51 +0000
commit0e1cd944398c9e9a3d4c0cf5273a126be91830e8 (patch)
tree10111ffdeb8782b10688ef17db6a47f78ad026bc /lib/Checker/AnalyzerStatsChecker.cpp
parent8db9faed418ea743f55c31e1ccecadbb23bd55b7 (diff)
Fix an inverse boolean and unnecessary new line in warning output from AnalyzerStatsChecker.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@114581 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Checker/AnalyzerStatsChecker.cpp')
-rw-r--r--lib/Checker/AnalyzerStatsChecker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Checker/AnalyzerStatsChecker.cpp b/lib/Checker/AnalyzerStatsChecker.cpp
index 9c6fcd2be1..b016eb9db0 100644
--- a/lib/Checker/AnalyzerStatsChecker.cpp
+++ b/lib/Checker/AnalyzerStatsChecker.cpp
@@ -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());