summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2010-01-04 19:10:20 +0000
committerDavid Greene <greened@obbligato.org>2010-01-04 19:10:20 +0000
commit7af1efc1aebe13773bbae13fce859d03528755a1 (patch)
tree2f3f8776324a7777968b020e97e201c7f859886f /llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
parenta751d09c0805a7bbe284d80e39b197319c1a4418 (diff)
downloadbcm5719-llvm-7af1efc1aebe13773bbae13fce859d03528755a1.tar.gz
bcm5719-llvm-7af1efc1aebe13773bbae13fce859d03528755a1.zip
Change errs() to dbgs().
llvm-svn: 92496
Diffstat (limited to 'llvm/lib/CodeGen/DeadMachineInstructionElim.cpp')
-rw-r--r--llvm/lib/CodeGen/DeadMachineInstructionElim.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp b/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
index 07a5d38db03..0982eabff12 100644
--- a/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
+++ b/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
@@ -109,7 +109,7 @@ bool DeadMachineInstructionElim::runOnMachineFunction(MachineFunction &MF) {
// If the instruction is dead, delete it!
if (isDead(MI)) {
- DEBUG(errs() << "DeadMachineInstructionElim: DELETING: " << *MI);
+ DEBUG(dbgs() << "DeadMachineInstructionElim: DELETING: " << *MI);
AnyChanges = true;
MI->eraseFromParent();
MIE = MBB->rend();
OpenPOWER on IntegriCloud