diff options
author | Chris Lattner <sabre@nondot.org> | 2005-09-30 01:28:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-09-30 01:28:14 +0000 |
commit | 294f41d5fc713350f060656e562c34ddf1cbe1c6 (patch) | |
tree | ec6375289c3cb6200e1b8190eeb751431da036c3 | |
parent | ff201eebea35c7e7d37897276e3df0153197b2fd (diff) |
Change these methods to take RC's
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23535 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/MRegisterInfo.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/llvm/Target/MRegisterInfo.h b/include/llvm/Target/MRegisterInfo.h index 9ddb4953f7..ed8ea23c88 100644 --- a/include/llvm/Target/MRegisterInfo.h +++ b/include/llvm/Target/MRegisterInfo.h @@ -239,11 +239,13 @@ public: virtual void storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, - unsigned SrcReg, int FrameIndex) const = 0; + unsigned SrcReg, int FrameIndex, + const TargetRegisterClass *RC) const = 0; virtual void loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, - unsigned DestReg, int FrameIndex) const = 0; + unsigned DestReg, int FrameIndex, + const TargetRegisterClass *RC) const = 0; virtual void copyRegToReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, |