aboutsummaryrefslogtreecommitdiffstats
path: root/bindings/ocaml/executionengine/llvm_executionengine.ml
diff options
context:
space:
mode:
authorGordon Henriksen <gordonhenriksen@mac.com>2008-08-08 20:49:28 +0000
committerGordon Henriksen <gordonhenriksen@mac.com>2008-08-08 20:49:28 +0000
commitd45f6dd0010a45791002e8a6b5c6228ab5e88794 (patch)
tree5e46cae5df29d42da7ed3d9f647039ddf7b5ed34 /bindings/ocaml/executionengine/llvm_executionengine.ml
parent730102bf69237ff12d61019d65cd860656adf3fa (diff)
downloadexternal_llvm-d45f6dd0010a45791002e8a6b5c6228ab5e88794.zip
external_llvm-d45f6dd0010a45791002e8a6b5c6228ab5e88794.tar.gz
external_llvm-d45f6dd0010a45791002e8a6b5c6228ab5e88794.tar.bz2
Fix the LLVMCreateJITCompiler C binding.
Evan broke it in r54523 by adding a parameter in the implementation without updating the header correspondingly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54555 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings/ocaml/executionengine/llvm_executionengine.ml')
-rw-r--r--bindings/ocaml/executionengine/llvm_executionengine.ml2
1 files changed, 2 insertions, 0 deletions
diff --git a/bindings/ocaml/executionengine/llvm_executionengine.ml b/bindings/ocaml/executionengine/llvm_executionengine.ml
index 4b9132d..cf9acc7 100644
--- a/bindings/ocaml/executionengine/llvm_executionengine.ml
+++ b/bindings/ocaml/executionengine/llvm_executionengine.ml
@@ -62,6 +62,8 @@ module ExecutionEngine = struct
= "llvm_ee_create_interpreter"
external create_jit: Llvm.llmoduleprovider -> t
= "llvm_ee_create_jit"
+ external create_fast_jit: Llvm.llmoduleprovider -> t
+ = "llvm_ee_create_fast_jit"
external dispose: t -> unit
= "llvm_ee_dispose"
external add_module_provider: Llvm.llmoduleprovider -> t -> unit