mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-04 17:56:53 +00:00
Convert DOUT to DEBUG(errs()...).
llvm-svn: 79748
This commit is contained in:
parent
7ce39eba34
commit
d197f257a7
@ -17,6 +17,7 @@
|
||||
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
using namespace llvm;
|
||||
@ -110,7 +111,7 @@ bool DeadMachineInstructionElim::runOnMachineFunction(MachineFunction &MF) {
|
||||
|
||||
// If the instruction is dead, delete it!
|
||||
if (isDead(MI)) {
|
||||
DOUT << "DeadMachineInstructionElim: DELETING: " << *MI;
|
||||
DEBUG(errs() << "DeadMachineInstructionElim: DELETING: " << *MI);
|
||||
AnyChanges = true;
|
||||
MI->eraseFromParent();
|
||||
MIE = MBB->rend();
|
||||
|
Loading…
Reference in New Issue
Block a user