diff options
author | Chris Lattner <sabre@nondot.org> | 2006-04-20 18:32:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-04-20 18:32:22 +0000 |
commit | 719c2fc97f7dbf2fdc3743f2324a33c02cbb8b0c (patch) | |
tree | 08185cb1fc5c1f231727381ed26ca1abacf377a1 | |
parent | f7fb31ea33c78f1bc46c23d9edbf9580b7756bbe (diff) |
Don't fill in fields that no longer exist.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27898 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | utils/TableGen/InstrInfoEmitter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp index 22ac58df59..ad043bdc10 100644 --- a/utils/TableGen/InstrInfoEmitter.cpp +++ b/utils/TableGen/InstrInfoEmitter.cpp @@ -181,8 +181,7 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num, 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... |