From b64ca1385a459da0e10e43c81bf26bb177b24e29 Mon Sep 17 00:00:00 2001 From: David Greene Date: Wed, 23 Dec 2009 23:29:28 +0000 Subject: [PATCH] Change dbgs() back to errs() as Chris requested. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92086 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/InstCount.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Analysis/InstCount.cpp b/lib/Analysis/InstCount.cpp index 4af6acb0f97..bb2cf53c85e 100644 --- a/lib/Analysis/InstCount.cpp +++ b/lib/Analysis/InstCount.cpp @@ -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: