summaryrefslogtreecommitdiff
path: root/lib/Target/MSP430/MSP430RegisterInfo.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2011-06-28 20:44:22 +0000
committerEvan Cheng <evan.cheng@apple.com>2011-06-28 20:44:22 +0000
commit6844f7bcdec8c2691c8d1067d90e4a02cf658c27 (patch)
tree10d0b849b170f5cba4897620fd5204bc17a8167f /lib/Target/MSP430/MSP430RegisterInfo.cpp
parent94b01f688256fca49decb239a8c84b003f18cdbc (diff)
downloadllvm-6844f7bcdec8c2691c8d1067d90e4a02cf658c27.tar.gz
llvm-6844f7bcdec8c2691c8d1067d90e4a02cf658c27.tar.bz2
llvm-6844f7bcdec8c2691c8d1067d90e4a02cf658c27.tar.xz
Hide more details in tablegen generated MCRegisterInfo ctor function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134027 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/MSP430/MSP430RegisterInfo.cpp')
-rw-r--r--lib/Target/MSP430/MSP430RegisterInfo.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/MSP430/MSP430RegisterInfo.cpp b/lib/Target/MSP430/MSP430RegisterInfo.cpp
index 0a2e93ac08..eaa994777b 100644
--- a/lib/Target/MSP430/MSP430RegisterInfo.cpp
+++ b/lib/Target/MSP430/MSP430RegisterInfo.cpp
@@ -35,8 +35,7 @@ using namespace llvm;
// FIXME: Provide proper call frame setup / destroy opcodes.
MSP430RegisterInfo::MSP430RegisterInfo(MSP430TargetMachine &tm,
const TargetInstrInfo &tii)
- : MSP430GenRegisterInfo(MSP430RegDesc, MSP430RegInfoDesc,
- MSP430::ADJCALLSTACKDOWN, MSP430::ADJCALLSTACKUP),
+ : MSP430GenRegisterInfo(MSP430::ADJCALLSTACKDOWN, MSP430::ADJCALLSTACKUP),
TM(tm), TII(tii) {
StackAlign = TM.getFrameLowering()->getStackAlignment();
}