forked from OSchip/llvm-project
Add a Doxygen comment, and inline the constructor (which is now almost empty).
llvm-svn: 15471
This commit is contained in:
parent
16f092fe93
commit
908df3299f
|
@ -25,10 +25,13 @@
|
|||
|
||||
namespace llvm {
|
||||
|
||||
/// SparcV9InstrInfo - TargetInstrInfo specialized for the SparcV9 target.
|
||||
///
|
||||
struct SparcV9InstrInfo : public TargetInstrInfo {
|
||||
const SparcV9RegisterInfo RI;
|
||||
public:
|
||||
SparcV9InstrInfo();
|
||||
SparcV9InstrInfo()
|
||||
: TargetInstrInfo(SparcV9MachineInstrDesc, V9::NUM_TOTAL_OPCODES) { }
|
||||
|
||||
/// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
|
||||
/// such, whenever a client has an instance of instruction info, it should
|
||||
|
|
Loading…
Reference in New Issue