diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-27 18:38:40 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-27 18:38:40 +0000 |
commit | 596c23134bbb8e62be1c8cc53f09149f9829454e (patch) | |
tree | f967653efef03b57ae31a41da35b88ee1242e77e | |
parent | f228fa05803e84f0439d1793125619218fb24154 (diff) |
Remove empty unused method processFunctionBeforeFrameFinalized()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15284 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/PowerPC/PowerPCRegisterInfo.cpp | 6 | ||||
-rw-r--r-- | lib/Target/PowerPC/PowerPCRegisterInfo.h | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/lib/Target/PowerPC/PowerPCRegisterInfo.cpp b/lib/Target/PowerPC/PowerPCRegisterInfo.cpp index fff49dff99..a9157ed921 100644 --- a/lib/Target/PowerPC/PowerPCRegisterInfo.cpp +++ b/lib/Target/PowerPC/PowerPCRegisterInfo.cpp @@ -186,12 +186,6 @@ PowerPCRegisterInfo::eliminateFrameIndex(MachineFunction &MF, } -void -PowerPCRegisterInfo::processFunctionBeforeFrameFinalized(MachineFunction &MF) - const { - // Do Nothing -} - void PowerPCRegisterInfo::emitPrologue(MachineFunction &MF) const { MachineBasicBlock &MBB = MF.front(); // Prolog goes in entry BB MachineBasicBlock::iterator MBBI = MBB.begin(); diff --git a/lib/Target/PowerPC/PowerPCRegisterInfo.h b/lib/Target/PowerPC/PowerPCRegisterInfo.h index 5cb39d4894..fd4b33e92e 100644 --- a/lib/Target/PowerPC/PowerPCRegisterInfo.h +++ b/lib/Target/PowerPC/PowerPCRegisterInfo.h @@ -47,8 +47,6 @@ struct PowerPCRegisterInfo : public PowerPCGenRegisterInfo { void eliminateFrameIndex(MachineFunction &MF, MachineBasicBlock::iterator II) const; - void processFunctionBeforeFrameFinalized(MachineFunction &MF) const; - void emitPrologue(MachineFunction &MF) const; void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const; }; |