1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Remove empty unused method processFunctionBeforeFrameFinalized()

llvm-svn: 15284
This commit is contained in:
Misha Brukman 2004-07-27 18:38:40 +00:00
parent 8c047d4fad
commit 0f26a3309f
2 changed files with 0 additions and 8 deletions

View File

@ -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();

View File

@ -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;
};