diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-29 17:51:02 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-29 17:51:02 +0000 |
commit | 519e239b1f8e12a6566d5140bfd08733ff227706 (patch) | |
tree | 71d3bf9fdb604702723d84be5cf0c2bd20e0fb25 /lib/ExecutionEngine/Interpreter/Interpreter.cpp | |
parent | 6addf2ceeb7b231e32308b7b15c77bc8992868a7 (diff) |
Implement use of new IntrinsicLowering interface.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33619 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.cpp')
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Interpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.cpp b/lib/ExecutionEngine/Interpreter/Interpreter.cpp index d39b5e1cf6..2b805ada4c 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.cpp +++ b/lib/ExecutionEngine/Interpreter/Interpreter.cpp @@ -66,7 +66,7 @@ Interpreter::Interpreter(Module *M) : ExecutionEngine(M), TD(M) { initializeExternalFunctions(); emitGlobals(); - IL = new IntrinsicLowering(); + IL = new IntrinsicLowering(TD); } Interpreter::~Interpreter() { |