diff options
author | David Greene <greened@obbligato.org> | 2010-01-04 19:10:20 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-04 19:10:20 +0000 |
commit | 7af1efc1aebe13773bbae13fce859d03528755a1 (patch) | |
tree | 2f3f8776324a7777968b020e97e201c7f859886f /llvm/lib/CodeGen/DeadMachineInstructionElim.cpp | |
parent | a751d09c0805a7bbe284d80e39b197319c1a4418 (diff) | |
download | bcm5719-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.cpp | 2 |
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(); |