From: Tom Care Date: Wed, 22 Sep 2010 21:07:51 +0000 (+0000) Subject: Fix an inverse boolean and unnecessary new line in warning output from AnalyzerStatsC... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e1cd944398c9e9a3d4c0cf5273a126be91830e8;p=clang 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 --- 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());