forked from OSchip/llvm-project
parent
9289d7d693
commit
4a22fb1fe9
|
@ -94,6 +94,12 @@ public:
|
|||
return desc[opCode];
|
||||
}
|
||||
|
||||
/// print - Print out the specified machine instruction in the appropriate
|
||||
/// target specific assembly language. If this method is not overridden, the
|
||||
/// default implementation uses the crummy machine independant printer.
|
||||
///
|
||||
virtual void print(const MachineInstr *MI, std::ostream &O) const;
|
||||
|
||||
const char *getName(MachineOpCode opCode) const {
|
||||
return get(opCode).Name;
|
||||
}
|
||||
|
|
|
@ -94,6 +94,12 @@ public:
|
|||
return desc[opCode];
|
||||
}
|
||||
|
||||
/// print - Print out the specified machine instruction in the appropriate
|
||||
/// target specific assembly language. If this method is not overridden, the
|
||||
/// default implementation uses the crummy machine independant printer.
|
||||
///
|
||||
virtual void print(const MachineInstr *MI, std::ostream &O) const;
|
||||
|
||||
const char *getName(MachineOpCode opCode) const {
|
||||
return get(opCode).Name;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue