mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 16:21:41 +00:00
Reduce bloat in target libraries by removing per machine instruction assertion
from code emitter generation. llvm-svn: 29097
This commit is contained in:
parent
2db97248f8
commit
9b46a1235a
@ -82,7 +82,6 @@ void CodeEmitterGen::run(std::ostream &o) {
|
||||
o << "unsigned " << Target.getName() << "CodeEmitter::"
|
||||
<< "getBinaryCodeForInstr(MachineInstr &MI) {\n"
|
||||
<< " unsigned Value = 0;\n"
|
||||
<< " DEBUG(std::cerr << MI);\n"
|
||||
<< " switch (MI.getOpcode()) {\n";
|
||||
|
||||
// Emit a case statement for each opcode
|
||||
@ -91,8 +90,7 @@ void CodeEmitterGen::run(std::ostream &o) {
|
||||
Record *R = *I;
|
||||
if (R->getName() == "PHI" || R->getName() == "INLINEASM") continue;
|
||||
|
||||
o << " case " << Namespace << R->getName() << ": {\n"
|
||||
<< " DEBUG(std::cerr << \"Emitting " << R->getName() << "\\n\");\n";
|
||||
o << " case " << Namespace << R->getName() << ": {\n";
|
||||
|
||||
BitsInit *BI = R->getValueAsBitsInit("Inst");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user