[llvm-commits] CVS: llvm/utils/TableGen/CodeEmitterGen.cpp
Misha Brukman
brukman at cs.uiuc.edu
Wed Sep 17 13:22:01 PDT 2003
Changes in directory llvm/utils/TableGen:
CodeEmitterGen.cpp updated: 1.26 -> 1.27
---
Log message:
Do not put DEBUG() guard around error condition; this must *always* be printed.
---
Diffs of the changes:
Index: llvm/utils/TableGen/CodeEmitterGen.cpp
diff -u llvm/utils/TableGen/CodeEmitterGen.cpp:1.26 llvm/utils/TableGen/CodeEmitterGen.cpp:1.27
--- llvm/utils/TableGen/CodeEmitterGen.cpp:1.26 Wed Aug 6 11:28:49 2003
+++ llvm/utils/TableGen/CodeEmitterGen.cpp Wed Sep 17 13:21:48 2003
@@ -209,7 +209,7 @@
}
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"
More information about the llvm-commits
mailing list