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 | 26045e25bf06a5b6476bd6f2d52a5d49da3c40d2 (patch) | |
tree | d024aa33ff7d0059e830e79a205520e0f61dc332 /lib/CodeGen/DeadMachineInstructionElim.cpp | |
parent | d7f5a588907f86ddc83fa29accea54a6c0e78e94 (diff) |
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92496 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/DeadMachineInstructionElim.cpp')
-rw-r--r-- | lib/CodeGen/DeadMachineInstructionElim.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/DeadMachineInstructionElim.cpp b/lib/CodeGen/DeadMachineInstructionElim.cpp index 07a5d38db0..0982eabff1 100644 --- a/lib/CodeGen/DeadMachineInstructionElim.cpp +++ b/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(); |