diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-08-19 23:33:02 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-08-19 23:33:02 +0000 |
commit | e5af930156a7ed5cfddead795aa9b0bcc37ad678 (patch) | |
tree | 01b2382097e7d157899474bc9ec5451035947639 /llvm/lib/CodeGen/MachineSink.cpp | |
parent | 63a868457b3e48d3539631bf67e66556f04773c4 (diff) | |
download | bcm5719-llvm-e5af930156a7ed5cfddead795aa9b0bcc37ad678.tar.gz bcm5719-llvm-e5af930156a7ed5cfddead795aa9b0bcc37ad678.zip |
Update debug logs.
llvm-svn: 111575
Diffstat (limited to 'llvm/lib/CodeGen/MachineSink.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineSink.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/MachineSink.cpp b/llvm/lib/CodeGen/MachineSink.cpp index 2f8e9ffdf9d..c8f8fafe227 100644 --- a/llvm/lib/CodeGen/MachineSink.cpp +++ b/llvm/lib/CodeGen/MachineSink.cpp @@ -391,20 +391,20 @@ bool MachineSinking::SinkInstruction(MachineInstr *MI, bool &SawStore) { bool TryBreak = false; bool store = true; if (!MI->isSafeToMove(TII, AA, store)) { - DEBUG(dbgs() << " *** PUNTING: Won't sink load along critical edge.\n"); + DEBUG(dbgs() << " *** NOTE: Won't sink load along critical edge.\n"); TryBreak = true; } // We don't want to sink across a critical edge if we don't dominate the // successor. We could be introducing calculations to new code paths. if (!TryBreak && !DT->dominates(ParentBlock, SuccToSinkTo)) { - DEBUG(dbgs() << " *** PUNTING: Critical edge found\n"); + DEBUG(dbgs() << " *** NOTE: Critical edge found\n"); TryBreak = true; } // Don't sink instructions into a loop. if (!TryBreak && LI->isLoopHeader(SuccToSinkTo)) { - DEBUG(dbgs() << " *** PUNTING: Loop header found\n"); + DEBUG(dbgs() << " *** NOTE: Loop header found\n"); TryBreak = true; } @@ -418,7 +418,7 @@ bool MachineSinking::SinkInstruction(MachineInstr *MI, bool &SawStore) { " *** PUNTING: Not legal or profitable to break critical edge\n"); return false; } else { - DEBUG(dbgs() << "*** Splitting critical edge:" + DEBUG(dbgs() << " *** Splitting critical edge:" " BB#" << ParentBlock->getNumber() << " -- BB#" << NewSucc->getNumber() << " -- BB#" << SuccToSinkTo->getNumber() << '\n'); |