aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/InstCount.cpp
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2009-12-23 23:29:28 +0000
committerDavid Greene <greened@obbligato.org>2009-12-23 23:29:28 +0000
commitb64ca1385a459da0e10e43c81bf26bb177b24e29 (patch)
tree1b6670b384cf56be5b905e878393c072c6e2a6d0 /lib/Analysis/InstCount.cpp
parenta8e21d485a71116f187523460efd367763cd8d59 (diff)
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
Diffstat (limited to 'lib/Analysis/InstCount.cpp')
-rw-r--r--lib/Analysis/InstCount.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/InstCount.cpp b/lib/Analysis/InstCount.cpp
index 4af6acb0f9..bb2cf53c85 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: