Fix trailing whitespace from ScalarEvolution::print.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73666 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-06-18 00:37:45 +00:00
parent ff6de36558
commit 9e7d9883b0

View File

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