[llvm-commits] CVS: llvm/lib/Target/SparcV9/SparcV9InstrInfo.h
Brian Gaeke
gaeke at cs.uiuc.edu
Wed Aug 4 00:29:38 PDT 2004
Changes in directory llvm/lib/Target/SparcV9:
SparcV9InstrInfo.h updated: 1.8 -> 1.9
---
Log message:
Add a Doxygen comment, and inline the constructor (which is now almost empty).
---
Diffs of the changes: (+4 -1)
Index: llvm/lib/Target/SparcV9/SparcV9InstrInfo.h
diff -u llvm/lib/Target/SparcV9/SparcV9InstrInfo.h:1.8 llvm/lib/Target/SparcV9/SparcV9InstrInfo.h:1.9
--- llvm/lib/Target/SparcV9/SparcV9InstrInfo.h:1.8 Tue Jul 27 12:43:22 2004
+++ llvm/lib/Target/SparcV9/SparcV9InstrInfo.h Wed Aug 4 02:29:28 2004
@@ -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
More information about the llvm-commits
mailing list