diff options
author | David Greene <greened@obbligato.org> | 2009-12-23 23:29:28 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-12-23 23:29:28 +0000 |
commit | 1495b5f88756cbfe34171fd492d79c5759441b89 (patch) | |
tree | 0ae6dc48b1bca60dadd75965a2a2454cf9437e38 /llvm/lib/Analysis/InstCount.cpp | |
parent | f790593e6ec436820740550456193e61636391a5 (diff) | |
download | bcm5719-llvm-1495b5f88756cbfe34171fd492d79c5759441b89.tar.gz bcm5719-llvm-1495b5f88756cbfe34171fd492d79c5759441b89.zip |
Change dbgs() back to errs() as Chris requested.
llvm-svn: 92086
Diffstat (limited to 'llvm/lib/Analysis/InstCount.cpp')
-rw-r--r-- | llvm/lib/Analysis/InstCount.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/InstCount.cpp b/llvm/lib/Analysis/InstCount.cpp index 4af6acb0f97..bb2cf53c85e 100644 --- a/llvm/lib/Analysis/InstCount.cpp +++ b/llvm/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: |