From: Chris Lattner Date: Thu, 18 Aug 2005 22:12:31 +0000 (+0000) Subject: revert this change, which causes breakage, temporarily X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f372ae6ebcad9dabe4d4de73966822af902150fe;p=oota-llvm.git revert this change, which causes breakage, temporarily git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22880 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp index 7dc13bc9ce2..6340a153a25 100644 --- a/utils/TableGen/InstrInfoEmitter.cpp +++ b/utils/TableGen/InstrInfoEmitter.cpp @@ -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";