Print a newline after printing a Value, now that Value's operator<<

doesn't print a newline.

llvm-svn: 75543
This commit is contained in:
Dan Gohman 2009-07-13 23:03:05 +00:00
parent e2d31aa132
commit fda3c4ac89
1 changed files with 1 additions and 1 deletions

View File

@ -4953,7 +4953,7 @@ void ScalarEvolution::print(raw_ostream &OS, const Module* ) const {
OS << "Classifying expressions for: " << F->getName() << "\n";
for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I)
if (isSCEVable(I->getType())) {
OS << *I;
OS << *I << '\n';
OS << " --> ";
const SCEV *SV = SE.getSCEV(&*I);
SV->print(OS);