Do not put DEBUG() guard around error condition; this must *always* be printed.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8583 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2003-09-17 18:21:48 +00:00
parent 4104f23e52
commit 0bb806bd9a
2 changed files with 2 additions and 2 deletions

View File

@ -209,7 +209,7 @@ void CodeEmitterGen::run(std::ostream &o) {
}
o << " default:\n"
<< " DEBUG(std::cerr << \"Not supported instr: \" << MI << \"\\n\");\n"
<< " std::cerr << \"Not supported instr: \" << MI << \"\\n\";\n"
<< " abort();\n"
<< " }\n"
<< " return Value;\n"

View File

@ -209,7 +209,7 @@ void CodeEmitterGen::run(std::ostream &o) {
}
o << " default:\n"
<< " DEBUG(std::cerr << \"Not supported instr: \" << MI << \"\\n\");\n"
<< " std::cerr << \"Not supported instr: \" << MI << \"\\n\";\n"
<< " abort();\n"
<< " }\n"
<< " return Value;\n"