diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-28 09:44:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-28 09:44:37 +0000 |
commit | c8c6c03dda789a6af20b23182b11bef088498735 (patch) | |
tree | 8a5d9666df719773bf0b2c4da85d44003a5954fa /llvm/lib/ExecutionEngine/JIT/JIT.h | |
parent | 4b75e04a6033e248f2e3b7665f6d6bac6b197c5d (diff) | |
download | bcm5719-llvm-c8c6c03dda789a6af20b23182b11bef088498735.tar.gz bcm5719-llvm-c8c6c03dda789a6af20b23182b11bef088498735.zip |
Pass around IntrinsicLowering instances as appropriate.
Reimplement the Interpreters implementation of va_* to be more direct.
llvm-svn: 10627
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/JIT.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JIT.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.h b/llvm/lib/ExecutionEngine/JIT/JIT.h index 53e8738bb84..414d1c6e683 100644 --- a/llvm/lib/ExecutionEngine/JIT/JIT.h +++ b/llvm/lib/ExecutionEngine/JIT/JIT.h @@ -44,9 +44,11 @@ public: ~JIT(); /// create - Create an return a new JIT compiler if there is one available - /// for the current target. Otherwise, return null. + /// for the current target. Otherwise, return null. If the JIT is created + /// successfully, it takes responsibility for deleting the specified + /// IntrinsicLowering implementation. /// - static ExecutionEngine *create(ModuleProvider *MP); + static ExecutionEngine *create(ModuleProvider *MP, IntrinsicLowering *IL = 0); /// run - Start execution with the specified function and arguments. /// |