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 | 2c0728011b639d12eaec627dd5507ba8021b23c5 (patch) | |
| tree | 9d59842d5c8c73eecec50a90c57bd989db724270 /lib | |
| parent | 46a0c81c5c6beb1abcd2dcd292bc4f3a1f0b629a (diff) | |
| download | external_llvm-2c0728011b639d12eaec627dd5507ba8021b23c5.zip external_llvm-2c0728011b639d12eaec627dd5507ba8021b23c5.tar.gz external_llvm-2c0728011b639d12eaec627dd5507ba8021b23c5.tar.bz2 | |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110465 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Target/Blackfin/BlackfinRegisterInfo.cpp | 4 | ||||
| -rw-r--r-- | lib/Target/Blackfin/BlackfinRegisterInfo.h | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/lib/Target/Blackfin/BlackfinRegisterInfo.cpp b/lib/Target/Blackfin/BlackfinRegisterInfo.cpp index 06e95de..797aa5d 100644 --- a/lib/Target/Blackfin/BlackfinRegisterInfo.cpp +++ b/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/lib/Target/Blackfin/BlackfinRegisterInfo.h b/lib/Target/Blackfin/BlackfinRegisterInfo.h index ead0b4a..415d1bd 100644 --- a/lib/Target/Blackfin/BlackfinRegisterInfo.h +++ b/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; |
