diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-04-30 00:43:39 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-04-30 00:43:39 +0000 |
commit | 610079287ef50721548a0399c126076be3a9a508 (patch) | |
tree | b17a7d13eb23c6c4ac8ed5773549e116e2540dd2 /bindings/ocaml/executionengine/executionengine_ocaml.c | |
parent | cf189964d742303ce5d8967d81378655e67cc03f (diff) | |
download | external_llvm-610079287ef50721548a0399c126076be3a9a508.zip external_llvm-610079287ef50721548a0399c126076be3a9a508.tar.gz external_llvm-610079287ef50721548a0399c126076be3a9a508.tar.bz2 |
Fix the JIT bindings for ocaml.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70454 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings/ocaml/executionengine/executionengine_ocaml.c')
-rw-r--r-- | bindings/ocaml/executionengine/executionengine_ocaml.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/ocaml/executionengine/executionengine_ocaml.c b/bindings/ocaml/executionengine/executionengine_ocaml.c index fc3848a..ec40338 100644 --- a/bindings/ocaml/executionengine/executionengine_ocaml.c +++ b/bindings/ocaml/executionengine/executionengine_ocaml.c @@ -181,7 +181,7 @@ CAMLprim LLVMExecutionEngineRef llvm_ee_create_jit(LLVMModuleProviderRef MP) { LLVMExecutionEngineRef JIT; char *Error; - if (LLVMCreateJITCompiler(&JIT, MP, 0, &Error)) + if (LLVMCreateJITCompiler(&JIT, MP, 3, &Error)) llvm_raise(llvm_ee_error_exn, Error); return JIT; } @@ -191,7 +191,7 @@ CAMLprim LLVMExecutionEngineRef llvm_ee_create_fast_jit(LLVMModuleProviderRef MP) { LLVMExecutionEngineRef JIT; char *Error; - if (LLVMCreateJITCompiler(&JIT, MP, 1, &Error)) + if (LLVMCreateJITCompiler(&JIT, MP, 0, &Error)) llvm_raise(llvm_ee_error_exn, Error); return JIT; } |