diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-09 05:20:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-09 05:20:15 +0000 |
commit | 6111a87b3aea006b2aee43ebe9cac0859b331f01 (patch) | |
tree | 966a606b3285b717b2d16e4f633977e7b5eb6342 /include | |
parent | bcd6cc8951b4953b1757b2e7a3d6600c6b28ec12 (diff) | |
download | external_llvm-6111a87b3aea006b2aee43ebe9cac0859b331f01.zip external_llvm-6111a87b3aea006b2aee43ebe9cac0859b331f01.tar.gz external_llvm-6111a87b3aea006b2aee43ebe9cac0859b331f01.tar.bz2 |
Move the InsertPrologEpilogCode class out of the Sparc.cpp file into the
new PrologEpilogCodeInserter.cpp file, and include the bodies of the
GetInstructionsFor(Prolog|Epilog) functions from SparcInstrSelection.cpp
into the class. This eliminates the need for a static global vector of
instructions and a class of errors that is really unneccesary.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2194 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/InstrSelection.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/CodeGen/InstrSelection.h b/include/llvm/CodeGen/InstrSelection.h index 91bc8f2..1a30230 100644 --- a/include/llvm/CodeGen/InstrSelection.h +++ b/include/llvm/CodeGen/InstrSelection.h @@ -32,14 +32,6 @@ extern void GetInstructionsByRule (InstructionNode* subtreeRoot, TargetMachine &Target, vector<MachineInstr*>& mvec); -extern unsigned GetInstructionsForProlog(BasicBlock* entryBB, - TargetMachine &Target, - MachineInstr** minstrVec); - -extern unsigned GetInstructionsForEpilog(BasicBlock* anExitBB, - TargetMachine &Target, - MachineInstr** minstrVec); - extern bool ThisIsAChainRule (int eruleno); |