diff options
-rw-r--r-- | lib/Checker/AnalyzerStatsChecker.cpp | 4 |
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()); |