diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-02-28 00:21:17 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-02-28 00:21:17 +0000 |
commit | 95ae95a6a6de0b5bfceee999adf546f5597c11cc (patch) | |
tree | 3e83702b06a32532d275731eade81f10e3714d98 /llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp | |
parent | 589ba3964b1115cef3263847cb5ed32f160cc42b (diff) | |
download | bcm5719-llvm-95ae95a6a6de0b5bfceee999adf546f5597c11cc.tar.gz bcm5719-llvm-95ae95a6a6de0b5bfceee999adf546f5597c11cc.zip |
PEI now passes a RegScavenger ptr to eliminateFrameIndex.
llvm-svn: 34707
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp b/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp index f8413a0a515..19ba9bc9150 100644 --- a/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp +++ b/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp @@ -623,8 +623,8 @@ void PPCRegisterInfo::lowerDynamicAlloc(MachineBasicBlock::iterator II) const { MBB.erase(II); } -void -PPCRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II) const { +void PPCRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II, + RegScavenger *RS) const { // Get the instruction. MachineInstr &MI = *II; // Get the instruction's basic block. |