implement support for the intrinsic lowering functionality
[oota-llvm.git] / lib / Target / X86 / X86JITInfo.h
index bce6e95a56341f6e8e974a713740c018c310e59a..0ebb4c5208e26b7abb2005f643ec05706abac6f3 100644 (file)
 
 namespace llvm {
   class TargetMachine;
+  class IntrinsicLowering;
+
   class X86JITInfo : public TargetJITInfo {
     TargetMachine &TM;
+    IntrinsicLowering &IL;
   public:
-    X86JITInfo(TargetMachine &tm) : TM(tm) {}
+    X86JITInfo(TargetMachine &tm, IntrinsicLowering &il) : TM(tm), IL(il) {}
 
     /// addPassesToJITCompile - Add passes to the specified pass manager to
     /// implement a fast dynamic compiler for this target.  Return true if this