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

llvm-svn: 92086
This commit is contained in:
David Greene 2009-12-23 23:29:28 +00:00
parent f790593e6e
commit 1495b5f887
1 changed files with 1 additions and 1 deletions

View 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: