diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-09-17 18:21:48 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-09-17 18:21:48 +0000 |
commit | 0bb806bd9a707358261ab83ee025c7b969c2edf0 (patch) | |
tree | aef8023e0b16ff14c6cfefec711ff916701eb2eb /utils/TableGen/CodeEmitterGen.cpp | |
parent | 4104f23e52c3c089a8535786b6a87a8eb6dd1374 (diff) |
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
Diffstat (limited to 'utils/TableGen/CodeEmitterGen.cpp')
-rw-r--r-- | utils/TableGen/CodeEmitterGen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/CodeEmitterGen.cpp b/utils/TableGen/CodeEmitterGen.cpp index a2839c9177..98976c7336 100644 --- a/utils/TableGen/CodeEmitterGen.cpp +++ b/utils/TableGen/CodeEmitterGen.cpp @@ -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" |