diff options
author | Chris Lattner <sabre@nondot.org> | 2004-08-15 21:56:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-08-15 21:56:44 +0000 |
commit | 57f1b67c347b9ba1f8a1cdc3a55362d4f2aa8653 (patch) | |
tree | 200460fe29f0f448f5fc80ff13d4ec62c2468b40 /lib/CodeGen/RegAllocSimple.cpp | |
parent | ed6655920fe65a0e627b0de198793104663ee11e (diff) |
These methods no longer take a TargetRegisterClass* operand.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15774 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocSimple.cpp')
-rw-r--r-- | lib/CodeGen/RegAllocSimple.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/RegAllocSimple.cpp b/lib/CodeGen/RegAllocSimple.cpp index 4c1e371c72..320b267933 100644 --- a/lib/CodeGen/RegAllocSimple.cpp +++ b/lib/CodeGen/RegAllocSimple.cpp @@ -131,7 +131,7 @@ unsigned RegAllocSimple::reloadVirtReg(MachineBasicBlock &MBB, // Add move instruction(s) ++NumLoads; - RegInfo->loadRegFromStackSlot(MBB, I, PhysReg, FrameIdx, RC); + RegInfo->loadRegFromStackSlot(MBB, I, PhysReg, FrameIdx); return PhysReg; } @@ -143,7 +143,7 @@ void RegAllocSimple::spillVirtReg(MachineBasicBlock &MBB, // Add move instruction(s) ++NumStores; - RegInfo->storeRegToStackSlot(MBB, I, PhysReg, FrameIdx, RC); + RegInfo->storeRegToStackSlot(MBB, I, PhysReg, FrameIdx); } |