commit | 92268e54a1b47aa82966073960cbf5a1d7046330 | [log] [tgz] |
---|---|---|
author | David Greene <greened@obbligato.org> | Mon Jan 04 19:10:20 2010 +0000 |
committer | David Greene <greened@obbligato.org> | Mon Jan 04 19:10:20 2010 +0000 |
tree | d024aa33ff7d0059e830e79a205520e0f61dc332 | |
parent | d70a2c04170f81534c8a879700bae5938dceeb0f [diff] [blame] |
Change errs() to dbgs(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92496 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/DeadMachineInstructionElim.cpp b/lib/CodeGen/DeadMachineInstructionElim.cpp index 07a5d38..0982eab 100644 --- a/lib/CodeGen/DeadMachineInstructionElim.cpp +++ b/lib/CodeGen/DeadMachineInstructionElim.cpp
@@ -109,7 +109,7 @@ // 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();