summaryrefslogtreecommitdiff
path: root/lib/Target/TargetRegisterInfo.cpp
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2010-05-25 23:43:18 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2010-05-25 23:43:18 +0000
commit76f0ad7bf5c05d6056b3bf335d0c3fb7e72de5d6 (patch)
tree76d198edb5b7ce0375b41fa0853ff59bcf231532 /lib/Target/TargetRegisterInfo.cpp
parentc3f5f783a2923e7842802d5cd1a932ee56c3bb45 (diff)
downloadllvm-76f0ad7bf5c05d6056b3bf335d0c3fb7e72de5d6.tar.gz
llvm-76f0ad7bf5c05d6056b3bf335d0c3fb7e72de5d6.tar.bz2
llvm-76f0ad7bf5c05d6056b3bf335d0c3fb7e72de5d6.tar.xz
Drop the SuperregHashTable. It is essentially the same as SubregHashTable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104650 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetRegisterInfo.cpp')
-rw-r--r--lib/Target/TargetRegisterInfo.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Target/TargetRegisterInfo.cpp b/lib/Target/TargetRegisterInfo.cpp
index ec2248a6b8..dcc5f610e6 100644
--- a/lib/Target/TargetRegisterInfo.cpp
+++ b/lib/Target/TargetRegisterInfo.cpp
@@ -25,10 +25,8 @@ TargetRegisterInfo::TargetRegisterInfo(const TargetRegisterDesc *D, unsigned NR,
const char *const *subregindexnames,
int CFSO, int CFDO,
const unsigned* subregs, const unsigned subregsize,
- const unsigned* superregs, const unsigned superregsize,
const unsigned* aliases, const unsigned aliasessize)
: SubregHash(subregs), SubregHashSize(subregsize),
- SuperregHash(superregs), SuperregHashSize(superregsize),
AliasesHash(aliases), AliasesHashSize(aliasessize),
Desc(D), SubRegIndexNames(subregindexnames), NumRegs(NR),
RegClassBegin(RCB), RegClassEnd(RCE) {