aboutsummaryrefslogtreecommitdiff
path: root/llvm/bindings/ocaml/executionengine/executionengine_ocaml.c
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-04-30 00:43:39 +0000
committerBill Wendling <isanbard@gmail.com>2009-04-30 00:43:39 +0000
commit352ee2cb05637518b47a8bfc34f83ede796acd07 (patch)
treeef8371f16cc8d5ab5157bff8ace750ca756224c5 /llvm/bindings/ocaml/executionengine/executionengine_ocaml.c
parent1fba01bbcdfa297407324debb22db1532b21113c (diff)
downloadllvm-352ee2cb05637518b47a8bfc34f83ede796acd07.zip
llvm-352ee2cb05637518b47a8bfc34f83ede796acd07.tar.gz
llvm-352ee2cb05637518b47a8bfc34f83ede796acd07.tar.bz2
Fix the JIT bindings for ocaml.
llvm-svn: 70454
Diffstat (limited to 'llvm/bindings/ocaml/executionengine/executionengine_ocaml.c')
-rw-r--r--llvm/bindings/ocaml/executionengine/executionengine_ocaml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/bindings/ocaml/executionengine/executionengine_ocaml.c b/llvm/bindings/ocaml/executionengine/executionengine_ocaml.c
index fc3848a..ec40338 100644
--- a/llvm/bindings/ocaml/executionengine/executionengine_ocaml.c
+++ b/llvm/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;
}