From 719c2fc97f7dbf2fdc3743f2324a33c02cbb8b0c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 20 Apr 2006 18:32:22 +0000 Subject: [PATCH] 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 --- utils/TableGen/InstrInfoEmitter.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp index 22ac58df597..ad043bdc104 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...