diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-06-03 02:45:09 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-06-03 02:45:09 +0000 |
commit | 498231bc601013da055fb8786d091b743c20006a (patch) | |
tree | 692dde500b4fcafc20bcff73fdca856e3d73fd39 /lib/Target/SparcV9/SparcV9RegInfo.cpp | |
parent | 44afcb7dcf3036bec35f4c4e2f85141bc966c418 (diff) | |
download | external_llvm-498231bc601013da055fb8786d091b743c20006a.zip external_llvm-498231bc601013da055fb8786d091b743c20006a.tar.gz external_llvm-498231bc601013da055fb8786d091b743c20006a.tar.bz2 |
Collapse together the abstract superclass TargetRegInfo and SparcV9RegInfo, its
only concrete implementation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13977 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9/SparcV9RegInfo.cpp')
-rw-r--r-- | lib/Target/SparcV9/SparcV9RegInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SparcV9/SparcV9RegInfo.cpp b/lib/Target/SparcV9/SparcV9RegInfo.cpp index a4afc4e..0c36d3b 100644 --- a/lib/Target/SparcV9/SparcV9RegInfo.cpp +++ b/lib/Target/SparcV9/SparcV9RegInfo.cpp @@ -36,7 +36,7 @@ enum { }; SparcV9RegInfo::SparcV9RegInfo(const SparcV9TargetMachine &tgt) - : TargetRegInfo(tgt), NumOfIntArgRegs(6), NumOfFloatArgRegs(32) + : target (tgt), NumOfIntArgRegs (6), NumOfFloatArgRegs (32) { MachineRegClassArr.push_back(new SparcV9IntRegClass(IntRegClassID)); MachineRegClassArr.push_back(new SparcV9FloatRegClass(FloatRegClassID)); |