forked from OSchip/llvm-project
Fix an inverse boolean and unnecessary new line in warning output from AnalyzerStatsChecker.
llvm-svn: 114581
This commit is contained in:
parent
1f57cc4a59
commit
14fefab721
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue