mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-05 02:07:16 +00:00
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:
parent
4104f23e52
commit
0bb806bd9a
@ -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"
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user