[llvm-commits] CVS: llvm/include/llvm/CodeGen/InstrSelection.h
Chris Lattner
lattner at cs.uiuc.edu
Sun Dec 28 03:44:07 PST 2003
Changes in directory llvm/include/llvm/CodeGen:
InstrSelection.h updated: 1.30 -> 1.31
---
Log message:
add argument
---
Diffs of the changes: (+6 -4)
Index: llvm/include/llvm/CodeGen/InstrSelection.h
diff -u llvm/include/llvm/CodeGen/InstrSelection.h:1.30 llvm/include/llvm/CodeGen/InstrSelection.h:1.31
--- llvm/include/llvm/CodeGen/InstrSelection.h:1.30 Tue Nov 11 16:41:31 2003
+++ llvm/include/llvm/CodeGen/InstrSelection.h Sun Dec 28 03:42:49 2003
@@ -19,12 +19,13 @@
namespace llvm {
class Function;
+class FunctionPass;
class InstrForest;
-class MachineInstr;
class InstructionNode;
-class TargetMachine;
+class IntrinsicLowering;
class MachineCodeForInstruction;
-class FunctionPass;
+class MachineInstr;
+class TargetMachine;
//===--------------------- Required Functions ---------------------------------
// Target-dependent functions that MUST be implemented for each target.
@@ -50,7 +51,8 @@
// Return a pass that performs machine dependent instruction selection.
//---------------------------------------------------------------------------
-FunctionPass *createInstructionSelectionPass(TargetMachine &Target);
+FunctionPass *createInstructionSelectionPass(TargetMachine &Target,
+ IntrinsicLowering &IL);
//************************ Exported Data Types *****************************/
More information about the llvm-commits
mailing list