OSDN Git Service

Change dbgs() back to errs() as Chris requested.
authorDavid Greene <greened@obbligato.org>
Wed, 23 Dec 2009 23:29:28 +0000 (23:29 +0000)
committerDavid Greene <greened@obbligato.org>
Wed, 23 Dec 2009 23:29:28 +0000 (23:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92086 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/InstCount.cpp

index 4af6acb..bb2cf53 100644 (file)
@@ -46,7 +46,7 @@ namespace {
 #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: