Remove empty processFunctionBeforeFrameFinalized(). The default
authorJim Grosbach <grosbach@apple.com>
Fri, 6 Aug 2010 18:57:24 +0000 (18:57 +0000)
committerJim Grosbach <grosbach@apple.com>
Fri, 6 Aug 2010 18:57:24 +0000 (18:57 +0000)
implementation of the function is equivalent, so no need to provide
the target-specific version until/unless it needs to do something.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110465 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Blackfin/BlackfinRegisterInfo.cpp
lib/Target/Blackfin/BlackfinRegisterInfo.h

index 06e95de1587f01905978203b14072147574b05a9..797aa5d4945d4fc72d62fb7a1effec81b12621c2 100644 (file)
@@ -344,10 +344,6 @@ processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
   }
 }
 
-void BlackfinRegisterInfo::
-processFunctionBeforeFrameFinalized(MachineFunction &MF) const {
-}
-
 // Emit a prologue that sets up a stack frame.
 // On function entry, R0-R2 and P0 may hold arguments.
 // R3, P1, and P2 may be used as scratch registers
index ead0b4a73c8322a68817697367fd6591dd7d6be3..415d1bd1086572097ae05d781f1e03a4ffc0fcf6 100644 (file)
@@ -58,8 +58,6 @@ namespace llvm {
     void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
                                               RegScavenger *RS) const;
 
-    void processFunctionBeforeFrameFinalized(MachineFunction &MF) const;
-
     void emitPrologue(MachineFunction &MF) const;
     void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;