diff options
| author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-07-11 06:53:30 +0000 |
|---|---|---|
| committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-07-11 06:53:30 +0000 |
| commit | 65306369aef01aec1d25e8b6d1438ba314850c50 (patch) | |
| tree | 9f2a47044a276d0d8eb3182a9685fd6b7bd26e10 /llvm/lib/Target/MSP430/MSP430InstrInfo.h | |
| parent | 37a38f4b28f6e6ccbbeed096fe1392641c07ad18 (diff) | |
| download | bcm5719-llvm-65306369aef01aec1d25e8b6d1438ba314850c50.tar.gz bcm5719-llvm-65306369aef01aec1d25e8b6d1438ba314850c50.zip | |
Replace copyRegToReg with copyPhysReg for MSP430.
llvm-svn: 108080
Diffstat (limited to 'llvm/lib/Target/MSP430/MSP430InstrInfo.h')
| -rw-r--r-- | llvm/lib/Target/MSP430/MSP430InstrInfo.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/llvm/lib/Target/MSP430/MSP430InstrInfo.h b/llvm/lib/Target/MSP430/MSP430InstrInfo.h index 3b012cb01e6..ebbda1aeef5 100644 --- a/llvm/lib/Target/MSP430/MSP430InstrInfo.h +++ b/llvm/lib/Target/MSP430/MSP430InstrInfo.h @@ -49,11 +49,10 @@ public: /// virtual const TargetRegisterInfo &getRegisterInfo() const { return RI; } - bool copyRegToReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, - unsigned DestReg, unsigned SrcReg, - const TargetRegisterClass *DestRC, - const TargetRegisterClass *SrcRC, - DebugLoc DL) const; + void copyPhysReg(MachineBasicBlock &MBB, + MachineBasicBlock::iterator I, DebugLoc DL, + unsigned DestReg, unsigned SrcReg, + bool KillSrc) const; bool isMoveInstr(const MachineInstr& MI, unsigned &SrcReg, unsigned &DstReg, |

