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 | 4d66925aea9bd7ac34612f33449827008336f65c (patch) | |
tree | 93dfb919beba1cb20f61f3f96df0e15ba11b5110 /llvm/lib | |
parent | 83df71af709bd0c53de526cba84acf20a18a886c (diff) | |
download | bcm5719-llvm-4d66925aea9bd7ac34612f33449827008336f65c.tar.gz bcm5719-llvm-4d66925aea9bd7ac34612f33449827008336f65c.zip |
Remove empty unused method processFunctionBeforeFrameFinalized()
llvm-svn: 15284
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCRegisterInfo.cpp | 6 | ||||
-rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCRegisterInfo.h | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPCRegisterInfo.cpp b/llvm/lib/Target/PowerPC/PowerPCRegisterInfo.cpp index fff49dff998..a9157ed921a 100644 --- a/llvm/lib/Target/PowerPC/PowerPCRegisterInfo.cpp +++ b/llvm/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/llvm/lib/Target/PowerPC/PowerPCRegisterInfo.h b/llvm/lib/Target/PowerPC/PowerPCRegisterInfo.h index 5cb39d48945..fd4b33e92ea 100644 --- a/llvm/lib/Target/PowerPC/PowerPCRegisterInfo.h +++ b/llvm/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; }; |