[llvm-commits] [llvm] r92496 - /llvm/trunk/lib/CodeGen/DeadMachineInstructionElim.cpp

David Greene greened at obbligato.org
Mon Jan 4 11:10:20 PST 2010


Author: greened
Date: Mon Jan  4 13:10:20 2010
New Revision: 92496

URL: http://llvm.org/viewvc/llvm-project?rev=92496&view=rev
Log:

Change errs() to dbgs().

Modified:
    llvm/trunk/lib/CodeGen/DeadMachineInstructionElim.cpp

Modified: llvm/trunk/lib/CodeGen/DeadMachineInstructionElim.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/DeadMachineInstructionElim.cpp?rev=92496&r1=92495&r2=92496&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/DeadMachineInstructionElim.cpp (original)
+++ llvm/trunk/lib/CodeGen/DeadMachineInstructionElim.cpp Mon Jan  4 13:10:20 2010
@@ -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();





More information about the llvm-commits mailing list