mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-25 10:38:44 +00:00
Add newlines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82206 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4aebc9d8c7
commit
1134dc5cc0
@ -285,7 +285,7 @@ void SparseSolver::Solve(Function &F) {
|
|||||||
Instruction *I = InstWorkList.back();
|
Instruction *I = InstWorkList.back();
|
||||||
InstWorkList.pop_back();
|
InstWorkList.pop_back();
|
||||||
|
|
||||||
DEBUG(errs() << "\nPopped off I-WL: " << *I);
|
DEBUG(errs() << "\nPopped off I-WL: " << *I << "\n");
|
||||||
|
|
||||||
// "I" got into the work list because it made a transition. See if any
|
// "I" got into the work list because it made a transition. See if any
|
||||||
// users are both live and in need of updating.
|
// users are both live and in need of updating.
|
||||||
@ -324,7 +324,7 @@ void SparseSolver::Print(Function &F, raw_ostream &OS) const {
|
|||||||
OS << "; anon bb\n";
|
OS << "; anon bb\n";
|
||||||
for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
|
for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
|
||||||
LatticeFunc->PrintValue(getLatticeState(I), OS);
|
LatticeFunc->PrintValue(getLatticeState(I), OS);
|
||||||
OS << *I;
|
OS << *I << "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
OS << "\n";
|
OS << "\n";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user