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 | 7301178aac1baf1cc334e7c7a66bfe50a65fbf49 (patch) | |
tree | a336d1188122315a48ebcca0a11f2eeb207b9289 /lib/ExecutionEngine/JIT/JIT.h | |
parent | f8742b3e033ff69649a3a76c12e28a1428858880 (diff) | |
download | external_llvm-7301178aac1baf1cc334e7c7a66bfe50a65fbf49.tar.gz external_llvm-7301178aac1baf1cc334e7c7a66bfe50a65fbf49.tar.bz2 external_llvm-7301178aac1baf1cc334e7c7a66bfe50a65fbf49.zip |
Pass around IntrinsicLowering instances as appropriate.
Reimplement the Interpreters implementation of va_* to be more direct.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10627 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/JIT/JIT.h')
-rw-r--r-- | lib/ExecutionEngine/JIT/JIT.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.h b/lib/ExecutionEngine/JIT/JIT.h index 53e8738bb8..414d1c6e68 100644 --- a/lib/ExecutionEngine/JIT/JIT.h +++ b/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. /// |