mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-07 11:33:44 +00:00
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:
parent
e860dcb6e4
commit
c902e136d1
@ -4953,7 +4953,7 @@ void ScalarEvolution::print(raw_ostream &OS, const Module* ) const {
|
|||||||
OS << "Classifying expressions for: " << F->getName() << "\n";
|
OS << "Classifying expressions for: " << F->getName() << "\n";
|
||||||
for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I)
|
for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I)
|
||||||
if (isSCEVable(I->getType())) {
|
if (isSCEVable(I->getType())) {
|
||||||
OS << *I;
|
OS << *I << '\n';
|
||||||
OS << " --> ";
|
OS << " --> ";
|
||||||
const SCEV *SV = SE.getSCEV(&*I);
|
const SCEV *SV = SE.getSCEV(&*I);
|
||||||
SV->print(OS);
|
SV->print(OS);
|
||||||
|
Loading…
Reference in New Issue
Block a user