aboutsummaryrefslogtreecommitdiffstats
path: root/utils/TableGen/InstrInfoEmitter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-08-18 22:12:31 +0000
committerChris Lattner <sabre@nondot.org>2005-08-18 22:12:31 +0000
commitf372ae6ebcad9dabe4d4de73966822af902150fe (patch)
tree56166be017424a644f480eadce5256ad70a14d29 /utils/TableGen/InstrInfoEmitter.cpp
parenta3ac88d8ab4605f6c1c298a8cdaa89d16c3756b4 (diff)
downloadexternal_llvm-f372ae6ebcad9dabe4d4de73966822af902150fe.zip
external_llvm-f372ae6ebcad9dabe4d4de73966822af902150fe.tar.gz
external_llvm-f372ae6ebcad9dabe4d4de73966822af902150fe.tar.bz2
revert this change, which causes breakage, temporarily
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22880 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/InstrInfoEmitter.cpp')
-rw-r--r--utils/TableGen/InstrInfoEmitter.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp
index 7dc13bc..6340a15 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";