Remove empty unused method processFunctionBeforeFrameFinalized()
authorMisha Brukman <brukman+llvm@gmail.com>
Tue, 27 Jul 2004 18:38:40 +0000 (18:38 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Tue, 27 Jul 2004 18:38:40 +0000 (18:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15284 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/PowerPCRegisterInfo.cpp
lib/Target/PowerPC/PowerPCRegisterInfo.h

index fff49dff998b5226f3275a2285d6cbec1d21de13..a9157ed921a72f151bfb952af5ca17256bfb6c77 100644 (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();
index 5cb39d489454ec3d538aece682e7551667dffbd2..fd4b33e92ea3f6de7f78784beb03fc01f40811bc 100644 (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;
 };