summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-08-22 20:04:03 +0000
committerBill Wendling <isanbard@gmail.com>2009-08-22 20:04:03 +0000
commit9311a2283091f194f5b40490f3419cb0767a861d (patch)
treeef794d3409f3c4ac0597839280d5bd7eea597aa6 /lib
parent3403bcd8f943cb053a7d9bbf8eb8135407699afa (diff)
downloadllvm-9311a2283091f194f5b40490f3419cb0767a861d.tar.gz
llvm-9311a2283091f194f5b40490f3419cb0767a861d.tar.bz2
llvm-9311a2283091f194f5b40490f3419cb0767a861d.tar.xz
Convert DOUT to DEBUG(errs()...).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79748 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/DeadMachineInstructionElim.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/DeadMachineInstructionElim.cpp b/lib/CodeGen/DeadMachineInstructionElim.cpp
index 45ce84b67c..e104d8cec0 100644
--- a/lib/CodeGen/DeadMachineInstructionElim.cpp
+++ b/lib/CodeGen/DeadMachineInstructionElim.cpp
@@ -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();