[llvm-commits] CVS: llvm/utils/TableGen/InstrInfoEmitter.cpp

Chris Lattner lattner at cs.uiuc.edu
Thu Aug 18 15:12:43 PDT 2005



Changes in directory llvm/utils/TableGen:

InstrInfoEmitter.cpp updated: 1.20 -> 1.21
---
Log message:

revert this change, which causes breakage, temporarily


---
Diffs of the changes:  (+3 -1)

 InstrInfoEmitter.cpp |    4 +++-
 1 files changed, 3 insertions(+), 1 deletion(-)


Index: llvm/utils/TableGen/InstrInfoEmitter.cpp
diff -u llvm/utils/TableGen/InstrInfoEmitter.cpp:1.20 llvm/utils/TableGen/InstrInfoEmitter.cpp:1.21
--- llvm/utils/TableGen/InstrInfoEmitter.cpp:1.20	Thu Aug 18 16:36:47 2005
+++ llvm/utils/TableGen/InstrInfoEmitter.cpp	Thu Aug 18 17:12:31 2005
@@ -125,7 +125,9 @@
     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";






More information about the llvm-commits mailing list