aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter/Interpreter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-11-15 18:00:10 +0000
committerChris Lattner <sabre@nondot.org>2006-11-15 18:00:10 +0000
commitb71fd7897f6b4500cdbe602c5a9907316750cf5a (patch)
treebfde4bc0d508d66aa539e308ff37ea881c711a67 /lib/ExecutionEngine/Interpreter/Interpreter.cpp
parentd6842e4e1805feaaf865a7b6bf59b35e4c5e0759 (diff)
Simplify IntrinsicLowering and clarify that it is only for use by the
CBE and interpreter. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31755 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 78e7a3c892..4728c95b74 100644
--- a/lib/ExecutionEngine/Interpreter/Interpreter.cpp
+++ b/lib/ExecutionEngine/Interpreter/Interpreter.cpp
@@ -67,7 +67,7 @@ Interpreter::Interpreter(Module *M) : ExecutionEngine(M), TD(M) {
initializeExternalFunctions();
emitGlobals();
- IL = new DefaultIntrinsicLowering();
+ IL = new IntrinsicLowering();
}
Interpreter::~Interpreter() {