[llvm-commits] CVS: llvm/utils/TableGen/InstrInfoEmitter.cpp
Chris Lattner
lattner at cs.uiuc.edu
Thu Apr 20 11:32:33 PDT 2006
Changes in directory llvm/utils/TableGen:
InstrInfoEmitter.cpp updated: 1.35 -> 1.36
---
Log message:
Don't fill in fields that no longer exist.
---
Diffs of the changes: (+1 -2)
InstrInfoEmitter.cpp | 3 +--
1 files changed, 1 insertion(+), 2 deletions(-)
Index: llvm/utils/TableGen/InstrInfoEmitter.cpp
diff -u llvm/utils/TableGen/InstrInfoEmitter.cpp:1.35 llvm/utils/TableGen/InstrInfoEmitter.cpp:1.36
--- llvm/utils/TableGen/InstrInfoEmitter.cpp:1.35 Thu Jan 26 19:44:09 2006
+++ llvm/utils/TableGen/InstrInfoEmitter.cpp Thu Apr 20 13:32:22 2006
@@ -181,8 +181,7 @@
unsigned ItinClass = !IsItineraries ? 0 :
ItinClassNumber(Inst.TheDef->getValueAsDef("Itinerary")->getName());
- OS << "\",\t" << NumOperands << ", -1, 0, false, 0, 0, "
- << ItinClass
+ OS << "\",\t" << NumOperands << ", " << ItinClass
<< ", 0";
// Emit all of the target indepedent flags...
More information about the llvm-commits
mailing list