diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-08-17 17:15:14 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-08-17 17:15:14 +0000 |
commit | a6848249ee0b1b2218139fb608ca79ec230091aa (patch) | |
tree | 3fabf12d1d0de87f0ddb92e10fbe4acecc20e1bf /llvm/lib/CodeGen/MachineBasicBlock.cpp | |
parent | 54a7be757be7c945a29d0c4075816c20d2f55f50 (diff) | |
download | bcm5719-llvm-a6848249ee0b1b2218139fb608ca79ec230091aa.tar.gz bcm5719-llvm-a6848249ee0b1b2218139fb608ca79ec230091aa.zip |
Fix debug message.
llvm-svn: 111250
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineBasicBlock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index 895653d18de..f506f12050a 100644 --- a/llvm/lib/CodeGen/MachineBasicBlock.cpp +++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp @@ -449,7 +449,7 @@ MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ, Pass *P) { MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock(); MF->insert(llvm::next(MachineFunction::iterator(this)), NMBB); - DEBUG(dbgs() << "PHIElimination splitting critical edge:" + DEBUG(dbgs() << "Splitting critical edge:" " BB#" << getNumber() << " -- BB#" << NMBB->getNumber() << " -- BB#" << Succ->getNumber() << '\n'); |