[cfe-commits] r164711 - /cfe/trunk/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
Ted Kremenek
kremenek at apple.com
Wed Sep 26 11:06:08 PDT 2012
Author: kremenek
Date: Wed Sep 26 13:06:08 2012
New Revision: 164711
URL: http://llvm.org/viewvc/llvm-project?rev=164711&view=rev
Log:
Revert "Use sep instead of ' '."
This isn't correct, as Jordan correctly points out.
Modified:
cfe/trunk/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
Modified: cfe/trunk/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp?rev=164711&r1=164710&r2=164711&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp Wed Sep 26 13:06:08 2012
@@ -566,7 +566,7 @@
Out << nl << sep << "Ranges of symbol values:";
for (ConstraintRangeTy::iterator I=Ranges.begin(), E=Ranges.end(); I!=E; ++I){
- Out << nl << sep << I.getKey() << " : ";
+ Out << nl << ' ' << I.getKey() << " : ";
I.getData().print(Out);
}
Out << nl;
More information about the cfe-commits
mailing list