diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-07-11 07:56:09 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-07-11 07:56:09 +0000 |
commit | 8e18a1a5cf4423dba9b8c53f2699299c514a9dc2 (patch) | |
tree | ed25e24a2a46b9420ccedcef005a60b57114f156 /lib/Target/Sparc/SparcInstrInfo.h | |
parent | 377b7b7ca3a28e2329abd1f22b9bc0482635ccce (diff) | |
download | external_llvm-8e18a1a5cf4423dba9b8c53f2699299c514a9dc2.zip external_llvm-8e18a1a5cf4423dba9b8c53f2699299c514a9dc2.tar.gz external_llvm-8e18a1a5cf4423dba9b8c53f2699299c514a9dc2.tar.bz2 |
Replace copyRegToReg with copyPhysReg for Sparc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108086 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Sparc/SparcInstrInfo.h')
-rw-r--r-- | lib/Target/Sparc/SparcInstrInfo.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/Target/Sparc/SparcInstrInfo.h b/lib/Target/Sparc/SparcInstrInfo.h index 9df3ee5..11680c3 100644 --- a/lib/Target/Sparc/SparcInstrInfo.h +++ b/lib/Target/Sparc/SparcInstrInfo.h @@ -71,12 +71,10 @@ public: const SmallVectorImpl<MachineOperand> &Cond, DebugLoc DL) const; - virtual bool copyRegToReg(MachineBasicBlock &MBB, - MachineBasicBlock::iterator I, - unsigned DestReg, unsigned SrcReg, - const TargetRegisterClass *DestRC, - const TargetRegisterClass *SrcRC, - DebugLoc DL) const; + virtual void copyPhysReg(MachineBasicBlock &MBB, + MachineBasicBlock::iterator I, DebugLoc DL, + unsigned DestReg, unsigned SrcReg, + bool KillSrc) const; virtual void storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, |