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 | 1e960cd4fd45116b04d1ae10bae637660f3b19df (patch) | |
tree | cd43efc59b0098feea6d7445204bd413bc61aded /llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp | |
parent | d7035b654bbfe698ef11b6a165aed517ea8c6bcc (diff) | |
download | bcm5719-llvm-1e960cd4fd45116b04d1ae10bae637660f3b19df.tar.gz bcm5719-llvm-1e960cd4fd45116b04d1ae10bae637660f3b19df.zip |
Implement use of new IntrinsicLowering interface.
llvm-svn: 33619
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 d39b5e1cf6c..2b805ada4c1 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp +++ b/llvm/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() { |