1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

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 7d880c801b
commit fd3cc860ec

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