diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-08-04 07:29:28 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-08-04 07:29:28 +0000 |
commit | 8943e68bffa9756dabac9a2d74a3b69a5d4b3fda (patch) | |
tree | 6463d346b8a9c943115dab375d35dc84d09d6c8d | |
parent | 587cd1aa3ce98948e7281751a68074f9aeffc07a (diff) |
Add a Doxygen comment, and inline the constructor (which is now almost empty).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15471 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/SparcV9/SparcV9InstrInfo.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Target/SparcV9/SparcV9InstrInfo.h b/lib/Target/SparcV9/SparcV9InstrInfo.h index 9d4d85998c..16d80a7cdb 100644 --- a/lib/Target/SparcV9/SparcV9InstrInfo.h +++ b/lib/Target/SparcV9/SparcV9InstrInfo.h @@ -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 |