summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86JITInfo.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-12-28 09:47:19 +0000
committerChris Lattner <sabre@nondot.org>2003-12-28 09:47:19 +0000
commit4482715f3d1c165be82bd5aed07231f956e472ef (patch)
treed8e9be552211f43e35a9187fc1b0ef42b877312f /lib/Target/X86/X86JITInfo.h
parent37b1826aab4614da2196d1b32d7a97cb9fcb3a21 (diff)
downloadllvm-4482715f3d1c165be82bd5aed07231f956e472ef.tar.gz
llvm-4482715f3d1c165be82bd5aed07231f956e472ef.tar.bz2
llvm-4482715f3d1c165be82bd5aed07231f956e472ef.tar.xz
implement support for the intrinsic lowering functionality
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10629 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86JITInfo.h')
-rw-r--r--lib/Target/X86/X86JITInfo.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Target/X86/X86JITInfo.h b/lib/Target/X86/X86JITInfo.h
index bce6e95a56..0ebb4c5208 100644
--- a/lib/Target/X86/X86JITInfo.h
+++ b/lib/Target/X86/X86JITInfo.h
@@ -18,10 +18,13 @@
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