From 9e7d9883b0fbbce54f19936d3d4c870b17b5a758 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 18 Jun 2009 00:37:45 +0000 Subject: [PATCH] Fix trailing whitespace from ScalarEvolution::print. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73666 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/ScalarEvolution.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index 751a635194c..50fb55785ab 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -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 << "<>";