aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineScheduler.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2013-01-25 07:45:31 +0000
committerAndrew Trick <atrick@apple.com>2013-01-25 07:45:31 +0000
commit54b2ce38129f88c613a51c0b46dbde0966536f96 (patch)
treeefd06a37e1566dc58e21fcd76fcfbd6fb56e98b8 /llvm/lib/CodeGen/MachineScheduler.cpp
parentea9fd951a03c63a64f40fcc8d9b7a7c9cbf69d9d (diff)
downloadllvm-54b2ce38129f88c613a51c0b46dbde0966536f96.zip
llvm-54b2ce38129f88c613a51c0b46dbde0966536f96.tar.gz
llvm-54b2ce38129f88c613a51c0b46dbde0966536f96.tar.bz2
MIsched: Print block name. No functionality.
llvm-svn: 173433
Diffstat (limited to 'llvm/lib/CodeGen/MachineScheduler.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineScheduler.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineScheduler.cpp b/llvm/lib/CodeGen/MachineScheduler.cpp
index 9072dd4..821a4f2 100644
--- a/llvm/lib/CodeGen/MachineScheduler.cpp
+++ b/llvm/lib/CodeGen/MachineScheduler.cpp
@@ -263,7 +263,8 @@ bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) {
}
DEBUG(dbgs() << "********** MI Scheduling **********\n");
DEBUG(dbgs() << MF->getName()
- << ":BB#" << MBB->getNumber() << "\n From: " << *I << " To: ";
+ << ":BB#" << MBB->getNumber() << " " << MBB->getName()
+ << "\n From: " << *I << " To: ";
if (RegionEnd != MBB->end()) dbgs() << *RegionEnd;
else dbgs() << "End";
dbgs() << " Remaining: " << RemainingInstrs << "\n");