diff options
author | Chris Lattner <sabre@nondot.org> | 2006-11-15 18:00:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-11-15 18:00:10 +0000 |
commit | 2775aba51d689e56446720959e86a30e91d69973 (patch) | |
tree | 93a726728dbad6be0ba90de1787bbadaa5b08d9f /llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp | |
parent | 60c2a0154a963ca0c9a3a2310866025918ecf1f5 (diff) | |
download | bcm5719-llvm-2775aba51d689e56446720959e86a30e91d69973.tar.gz bcm5719-llvm-2775aba51d689e56446720959e86a30e91d69973.zip |
Simplify IntrinsicLowering and clarify that it is only for use by the
CBE and interpreter.
llvm-svn: 31755
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp index 78e7a3c8922..4728c95b743 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp +++ b/llvm/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() { |