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 | 352ee2cb05637518b47a8bfc34f83ede796acd07 (patch) | |
tree | ef8371f16cc8d5ab5157bff8ace750ca756224c5 | |
parent | 1fba01bbcdfa297407324debb22db1532b21113c (diff) | |
download | bcm5719-llvm-352ee2cb05637518b47a8bfc34f83ede796acd07.tar.gz bcm5719-llvm-352ee2cb05637518b47a8bfc34f83ede796acd07.zip |
Fix the JIT bindings for ocaml.
llvm-svn: 70454
-rw-r--r-- | llvm/bindings/ocaml/executionengine/executionengine_ocaml.c | 4 | ||||
-rw-r--r-- | llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/llvm/bindings/ocaml/executionengine/executionengine_ocaml.c b/llvm/bindings/ocaml/executionengine/executionengine_ocaml.c index fc3848a1eb1..ec403380ef4 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; } diff --git a/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp b/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp index 0ef85dd0369..83397a586d5 100644 --- a/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp +++ b/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp @@ -114,11 +114,12 @@ int LLVMCreateInterpreter(LLVMExecutionEngineRef *OutInterp, int LLVMCreateJITCompiler(LLVMExecutionEngineRef *OutJIT, LLVMModuleProviderRef MP, - CodeGenOpt::Level OptLevel, + unsigned OptLevel, char **OutError) { std::string Error; - if (ExecutionEngine *JIT = ExecutionEngine::createJIT(unwrap(MP), &Error, 0, - OptLevel)) { + if (ExecutionEngine *JIT = + ExecutionEngine::createJIT(unwrap(MP), &Error, 0, + (CodeGenOpt::Level)OptLevel)) { *OutJIT = wrap(JIT); return 0; } |