diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-05-03 13:07:54 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-05-03 13:07:54 +0000 |
commit | ec3f0b3f9dff55325e473f0330b9d9f585ae1382 (patch) | |
tree | d6c07a4bc3eb1a28a5987006cb10e72ccbc44e18 /llvm/lib/Target/MSP430/MSP430InstrInfo.cpp | |
parent | 5613510c816a644a9234180b3b24d6d5325294b6 (diff) | |
download | bcm5719-llvm-ec3f0b3f9dff55325e473f0330b9d9f585ae1382.tar.gz bcm5719-llvm-ec3f0b3f9dff55325e473f0330b9d9f585ae1382.zip |
Add call frame setup instruction elimination and lowerid for bunch of call-related stuff.
llvm-svn: 70728
Diffstat (limited to 'llvm/lib/Target/MSP430/MSP430InstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/MSP430/MSP430InstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp b/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp index 579da6e90ea..dbbf29cdeea 100644 --- a/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp +++ b/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp @@ -25,7 +25,7 @@ using namespace llvm; MSP430InstrInfo::MSP430InstrInfo(MSP430TargetMachine &tm) : TargetInstrInfoImpl(MSP430Insts, array_lengthof(MSP430Insts)), - RI(*this), TM(tm) {} + RI(tm, *this), TM(tm) {} bool MSP430InstrInfo::copyRegToReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, |