diff options
| author | Chris Lattner <sabre@nondot.org> | 2005-09-30 01:29:42 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2005-09-30 01:29:42 +0000 |
| commit | a654525c1c9f926c4430bcdfe11852e4f5a9bbba (patch) | |
| tree | 99cb4423a68b4659c46851814dc487f9577c9365 /llvm/lib/Target/Skeleton/SkeletonRegisterInfo.cpp | |
| parent | 5a6199f3872af8dd9eecea7529dd7cb12ee59958 (diff) | |
| download | bcm5719-llvm-a654525c1c9f926c4430bcdfe11852e4f5a9bbba.tar.gz bcm5719-llvm-a654525c1c9f926c4430bcdfe11852e4f5a9bbba.zip | |
Pass extra regclasses into spilling code
llvm-svn: 23537
Diffstat (limited to 'llvm/lib/Target/Skeleton/SkeletonRegisterInfo.cpp')
| -rw-r--r-- | llvm/lib/Target/Skeleton/SkeletonRegisterInfo.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/Target/Skeleton/SkeletonRegisterInfo.cpp b/llvm/lib/Target/Skeleton/SkeletonRegisterInfo.cpp index b77487fd329..3114c8bc963 100644 --- a/llvm/lib/Target/Skeleton/SkeletonRegisterInfo.cpp +++ b/llvm/lib/Target/Skeleton/SkeletonRegisterInfo.cpp @@ -22,13 +22,15 @@ SkeletonRegisterInfo::SkeletonRegisterInfo() void SkeletonRegisterInfo:: storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, - unsigned SrcReg, int FrameIdx) const { + unsigned SrcReg, int FrameIdx, + const TargetRegisterClass *RC) const { abort(); } void SkeletonRegisterInfo:: loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, - unsigned DestReg, int FrameIdx) const { + unsigned DestReg, int FrameIdx, + const TargetRegisterClass *RC) const { abort(); } |

