mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-12 14:06:36 +00:00
Add opcode to TargetInstrDescriptor.
llvm-svn: 31804
This commit is contained in:
parent
efe40f4316
commit
e1ca976ce4
@ -197,7 +197,9 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
|
||||
else
|
||||
MinOperands = 0;
|
||||
|
||||
OS << " { \"";
|
||||
OS << " { ";
|
||||
OS << Num << ",\t" << MinOperands << ",\t\"";
|
||||
|
||||
if (Inst.Name.empty())
|
||||
OS << Inst.TheDef->getName();
|
||||
else
|
||||
@ -206,8 +208,7 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
|
||||
unsigned ItinClass = !IsItineraries ? 0 :
|
||||
ItinClassNumber(Inst.TheDef->getValueAsDef("Itinerary")->getName());
|
||||
|
||||
OS << "\",\t" << MinOperands << ", " << ItinClass
|
||||
<< ", 0";
|
||||
OS << "\",\t" << ItinClass << ", 0";
|
||||
|
||||
// Try to determine (from the pattern), if the instruction is a store.
|
||||
bool isStore = false;
|
||||
|
Loading…
Reference in New Issue
Block a user