revert this change, which causes breakage, temporarily
authorChris Lattner <sabre@nondot.org>
Thu, 18 Aug 2005 22:12:31 +0000 (22:12 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 18 Aug 2005 22:12:31 +0000 (22:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22880 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/InstrInfoEmitter.cpp

index 7dc13bc9ce262b4c7fb4ea2ed6d5528fc87e1fdf..6340a153a258c864a4b525840c205c399531ddac 100644 (file)
@@ -125,7 +125,9 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
     OS << Inst.TheDef->getName();
   else
     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...
   if (Inst.isReturn)     OS << "|M_RET_FLAG";