1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

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 693db7a309
commit c0eced92e3

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: