1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

revert this change, which causes breakage, temporarily

llvm-svn: 22880
This commit is contained in:
Chris Lattner 2005-08-18 22:12:31 +00:00
parent b312f4d374
commit 1f718aa8b5

View File

@ -125,7 +125,9 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
OS << Inst.TheDef->getName(); OS << Inst.TheDef->getName();
else else
OS << Inst.Name; OS << Inst.Name;
OS << "\",\t" << Inst.OperandList.size() << ", -1, 0, false, 0, 0, 0, 0"; OS << "\",\t" << -1
//Inst.OperandList.size()
<< ", -1, 0, false, 0, 0, 0, 0";
// Emit all of the target indepedent flags... // Emit all of the target indepedent flags...
if (Inst.isReturn) OS << "|M_RET_FLAG"; if (Inst.isReturn) OS << "|M_RET_FLAG";