diff options
| author | Jim Grosbach <grosbach@apple.com> | 2010-08-06 18:57:24 +0000 |
|---|---|---|
| committer | Jim Grosbach <grosbach@apple.com> | 2010-08-06 18:57:24 +0000 |
| commit | 4603d096609c16320b30e3f1ee1d3506fef568fb (patch) | |
| tree | 550f5fcbcfb79b07b93ce6b6e0d4325bfc5e1c37 | |
| parent | 1dfca4e4bb355e68892f60392e2fc8f46a00d640 (diff) | |
| download | bcm5719-llvm-4603d096609c16320b30e3f1ee1d3506fef568fb.tar.gz bcm5719-llvm-4603d096609c16320b30e3f1ee1d3506fef568fb.zip | |
Remove empty processFunctionBeforeFrameFinalized(). The default
implementation of the function is equivalent, so no need to provide
the target-specific version until/unless it needs to do something.
llvm-svn: 110465
| -rw-r--r-- | llvm/lib/Target/Blackfin/BlackfinRegisterInfo.cpp | 4 | ||||
| -rw-r--r-- | llvm/lib/Target/Blackfin/BlackfinRegisterInfo.h | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.cpp b/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.cpp index 06e95de1587..797aa5d4945 100644 --- a/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.cpp +++ b/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.cpp @@ -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 diff --git a/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.h b/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.h index ead0b4a73c8..415d1bd1086 100644 --- a/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.h +++ b/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.h @@ -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; |

