aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Mips/MipsInstrInfo.h
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2010-07-11 01:08:31 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2010-07-11 01:08:31 +0000
commit273c14f5300ccf94459bed02964b4161a7338e79 (patch)
treecd086d9e7f7b0bef72eb854b84c16561957ff6ad /lib/Target/Mips/MipsInstrInfo.h
parent99666a3429403a7c421ba07c7a19501491b218f2 (diff)
downloadexternal_llvm-273c14f5300ccf94459bed02964b4161a7338e79.zip
external_llvm-273c14f5300ccf94459bed02964b4161a7338e79.tar.gz
external_llvm-273c14f5300ccf94459bed02964b4161a7338e79.tar.bz2
Replace copyRegToReg with copyPhysReg for Mips.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108066 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsInstrInfo.h')
-rw-r--r--lib/Target/Mips/MipsInstrInfo.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/Target/Mips/MipsInstrInfo.h b/lib/Target/Mips/MipsInstrInfo.h
index 8ad6c07..a8ae21e 100644
--- a/lib/Target/Mips/MipsInstrInfo.h
+++ b/lib/Target/Mips/MipsInstrInfo.h
@@ -206,12 +206,10 @@ public:
MachineBasicBlock *FBB,
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 MI, DebugLoc DL,
+ unsigned DestReg, unsigned SrcReg,
+ bool KillSrc) const;
virtual void storeRegToStackSlot(MachineBasicBlock &MBB,
MachineBasicBlock::iterator MBBI,
unsigned SrcReg, bool isKill, int FrameIndex,