Author: kremenek
Date: Wed Sep 26 12:23:31 2012
New Revision: 164709

URL: http://llvm.org/viewvc/llvm-project?rev=164709&view=rev
Log:
Use sep instead of ' '.

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=164709&r1=164708&r2=164709&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp Wed Sep 26 
12:23:31 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 << ' ' << I.getKey() << " : ";
+    Out << nl << sep << I.getKey() << " : ";
     I.getData().print(Out);
   }
   Out << nl;


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to