summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter/Interpreter.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-29 17:51:02 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-29 17:51:02 +0000
commit519e239b1f8e12a6566d5140bfd08733ff227706 (patch)
tree71d3bf9fdb604702723d84be5cf0c2bd20e0fb25 /lib/ExecutionEngine/Interpreter/Interpreter.cpp
parent6addf2ceeb7b231e32308b7b15c77bc8992868a7 (diff)
downloadllvm-519e239b1f8e12a6566d5140bfd08733ff227706.tar.gz
llvm-519e239b1f8e12a6566d5140bfd08733ff227706.tar.bz2
llvm-519e239b1f8e12a6566d5140bfd08733ff227706.tar.xz
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.cpp2
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() {