aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-09-30 01:28:14 +0000
committerChris Lattner <sabre@nondot.org>2005-09-30 01:28:14 +0000
commit294f41d5fc713350f060656e562c34ddf1cbe1c6 (patch)
treeec6375289c3cb6200e1b8190eeb751431da036c3
parentff201eebea35c7e7d37897276e3df0153197b2fd (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.h6
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,