mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-05 12:31:33 +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";
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user