[llvm-commits] [llvm] r92653 - /llvm/trunk/lib/Target/X86/X86InstrInfo.cpp

David Greene greened at obbligato.org
Mon Jan 4 17:29:29 PST 2010


Author: greened
Date: Mon Jan  4 19:29:29 2010
New Revision: 92653

URL: http://llvm.org/viewvc/llvm-project?rev=92653&view=rev
Log:
Change errs() to dbgs().

Modified:
    llvm/trunk/lib/Target/X86/X86InstrInfo.cpp

Modified: llvm/trunk/lib/Target/X86/X86InstrInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86InstrInfo.cpp?rev=92653&r1=92652&r2=92653&view=diff

==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrInfo.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86InstrInfo.cpp Mon Jan  4 19:29:29 2010
@@ -28,6 +28,7 @@
 #include "llvm/CodeGen/LiveVariables.h"
 #include "llvm/CodeGen/PseudoSourceValue.h"
 #include "llvm/Support/CommandLine.h"
+#include "llvm/Support/Debug.h"
 #include "llvm/Support/ErrorHandling.h"
 #include "llvm/Support/raw_ostream.h"
 #include "llvm/Target/TargetOptions.h"
@@ -2354,7 +2355,7 @@
   
   // No fusion 
   if (PrintFailedFusing)
-    errs() << "We failed to fuse operand " << i << " in " << *MI;
+    dbgs() << "We failed to fuse operand " << i << " in " << *MI;
   return NULL;
 }
 





More information about the llvm-commits mailing list