diff options
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r-- | include/llvm/CodeGen/InstrSelection.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/InstrSelection.h b/include/llvm/CodeGen/InstrSelection.h index cfd7131f83..fa4f21a175 100644 --- a/include/llvm/CodeGen/InstrSelection.h +++ b/include/llvm/CodeGen/InstrSelection.h @@ -20,18 +20,17 @@ class MachineInstr; class InstructionNode; class TargetMachine; - /************************* Required Functions ******************************* * Target-dependent functions that MUST be implemented for each target. ***************************************************************************/ const unsigned MAX_INSTR_PER_VMINSTR = 8; -extern unsigned GetInstructionsByRule (InstructionNode* subtreeRoot, +extern void GetInstructionsByRule (InstructionNode* subtreeRoot, int ruleForNode, short* nts, TargetMachine &Target, - MachineInstr** minstrVec); + vector<MachineInstr*>& mvec); extern unsigned GetInstructionsForProlog(BasicBlock* entryBB, TargetMachine &Target, |