Fix trailing whitespace from ScalarEvolution::print.
authorDan Gohman <gohman@apple.com>
Thu, 18 Jun 2009 00:37:45 +0000 (00:37 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 18 Jun 2009 00:37:45 +0000 (00:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73666 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/ScalarEvolution.cpp

index 751a635194c597f9c354f37c2fa4fb9f98eebd14..50fb55785abd8fa2285e9cc811e8bf696f115a04 100644 (file)
@@ -4025,10 +4025,9 @@ void ScalarEvolution::print(raw_ostream &OS, const Module* ) const {
       OS << "  -->  ";
       SCEVHandle SV = SE.getSCEV(&*I);
       SV->print(OS);
-      OS << "\t\t";
 
       if (const Loop *L = LI->getLoopFor((*I).getParent())) {
-        OS << "Exits: ";
+        OS << "\t\t" "Exits: ";
         SCEVHandle ExitValue = SE.getSCEVAtScope(&*I, L->getParentLoop());
         if (!ExitValue->isLoopInvariant(L)) {
           OS << "<<Unknown>>";