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

doesn't print a newline.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75543 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-07-13 23:03:05 +00:00
parent e860dcb6e4
commit c902e136d1

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);