mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Instructions no longer need to have names.
llvm-svn: 15399
This commit is contained in:
parent
90a4b737dd
commit
ae25608f8b
@ -97,7 +97,12 @@ void InstrInfoEmitter::run(std::ostream &OS) {
|
||||
|
||||
void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
|
||||
Record *InstrInfo, std::ostream &OS) {
|
||||
OS << " { \"" << Inst.Name << "\",\t-1, -1, 0, false, 0, 0, 0, 0";
|
||||
OS << " { \"";
|
||||
if (Inst.Name.empty())
|
||||
OS << Inst.TheDef->getName();
|
||||
else
|
||||
OS << Inst.Name;
|
||||
OS << "\",\t-1, -1, 0, false, 0, 0, 0, 0";
|
||||
|
||||
// Emit all of the target indepedent flags...
|
||||
if (Inst.isReturn) OS << "|M_RET_FLAG";
|
||||
|
Loading…
x
Reference in New Issue
Block a user