mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Simplify debug output.
llvm-svn: 148723
This commit is contained in:
parent
3c6289f43a
commit
7c2c3ef5cd
@ -582,16 +582,8 @@ void MachineLICM::HoistPostRA(MachineInstr *MI, unsigned Def) {
|
||||
|
||||
// Now move the instructions to the predecessor, inserting it before any
|
||||
// terminator instructions.
|
||||
DEBUG({
|
||||
dbgs() << "Hoisting " << *MI;
|
||||
if (Preheader->getBasicBlock())
|
||||
dbgs() << " to MachineBasicBlock "
|
||||
<< Preheader->getName();
|
||||
if (MI->getParent()->getBasicBlock())
|
||||
dbgs() << " from MachineBasicBlock "
|
||||
<< MI->getParent()->getName();
|
||||
dbgs() << "\n";
|
||||
});
|
||||
DEBUG(dbgs() << "Hoisting to BB#" << Preheader->getNumber() << " from BB#"
|
||||
<< MI->getParent()->getNumber() << ": " << *MI);
|
||||
|
||||
// Splice the instruction to the preheader.
|
||||
MachineBasicBlock *MBB = MI->getParent();
|
||||
|
Loading…
x
Reference in New Issue
Block a user