add argument

llvm-svn: 10625
This commit is contained in:
Chris Lattner 2003-12-28 09:42:49 +00:00
parent bfa9c87bad
commit 1ae8dde6c4
1 changed files with 8 additions and 6 deletions

View File

@ -19,12 +19,13 @@
namespace llvm {
class Function;
class InstrForest;
class MachineInstr;
class InstructionNode;
class TargetMachine;
class MachineCodeForInstruction;
class FunctionPass;
class InstrForest;
class InstructionNode;
class IntrinsicLowering;
class MachineCodeForInstruction;
class MachineInstr;
class TargetMachine;
//===--------------------- Required Functions ---------------------------------
// Target-dependent functions that MUST be implemented for each target.
@ -50,7 +51,8 @@ extern bool ThisIsAChainRule (int eruleno);
// Return a pass that performs machine dependent instruction selection.
//---------------------------------------------------------------------------
FunctionPass *createInstructionSelectionPass(TargetMachine &Target);
FunctionPass *createInstructionSelectionPass(TargetMachine &Target,
IntrinsicLowering &IL);
//************************ Exported Data Types *****************************/