[cfe-commits] r164709 - /cfe/trunk/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp

Ted Kremenek kremenek at apple.com
Wed Sep 26 10:23:32 PDT 2012


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;





More information about the cfe-commits mailing list