From: Chris Lattner Date: Thu, 20 Apr 2006 18:32:22 +0000 (+0000) Subject: Don't fill in fields that no longer exist. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=719c2fc97f7dbf2fdc3743f2324a33c02cbb8b0c;p=oota-llvm.git 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 --- 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...