[llvm-commits] [llvm] r92086 - /llvm/trunk/lib/Analysis/InstCount.cpp

David Greene greened at obbligato.org
Wed Dec 23 15:29:28 PST 2009


Author: greened
Date: Wed Dec 23 17:29:28 2009
New Revision: 92086

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

Change dbgs() back to errs() as Chris requested.

Modified:
    llvm/trunk/lib/Analysis/InstCount.cpp

Modified: llvm/trunk/lib/Analysis/InstCount.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/InstCount.cpp?rev=92086&r1=92085&r2=92086&view=diff

==============================================================================
--- llvm/trunk/lib/Analysis/InstCount.cpp (original)
+++ llvm/trunk/lib/Analysis/InstCount.cpp Wed Dec 23 17:29:28 2009
@@ -46,7 +46,7 @@
 #include "llvm/Instruction.def"
 
     void visitInstruction(Instruction &I) {
-      dbgs() << "Instruction Count does not know about " << I;
+      errs() << "Instruction Count does not know about " << I;
       llvm_unreachable(0);
     }
   public:





More information about the llvm-commits mailing list