Add newlines.

llvm-svn: 82206
This commit is contained in:
Nick Lewycky 2009-09-18 07:36:47 +00:00
parent e3d209ff77
commit 6a3260e004
1 changed files with 2 additions and 2 deletions

View File

@ -285,7 +285,7 @@ void SparseSolver::Solve(Function &F) {
Instruction *I = InstWorkList.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
// 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";
for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
LatticeFunc->PrintValue(getLatticeState(I), OS);
OS << *I;
OS << *I << "\n";
}
OS << "\n";