Skip to content
This repository has been archived by the owner on Dec 20, 2019. It is now read-only.

Commit

Permalink
add support for ocaml 3.12
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163096 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
nunoplopes committed Sep 2, 2012
1 parent dbb731e commit 52556d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bindings/ocaml/executionengine/executionengine_ocaml.c
Expand Up @@ -75,6 +75,9 @@ static struct custom_operations generic_value_ops = {
custom_hash_default,
custom_serialize_default,
custom_deserialize_default
#ifdef custom_compare_ext_default
, custom_compare_ext_default
#endif
};

static value alloc_generic_value(LLVMGenericValueRef Ref) {
Expand Down
3 changes: 3 additions & 0 deletions bindings/ocaml/llvm/llvm_ocaml.c
Expand Up @@ -1277,6 +1277,9 @@ static struct custom_operations builder_ops = {
custom_hash_default,
custom_serialize_default,
custom_deserialize_default
#ifdef custom_compare_ext_default
, custom_compare_ext_default
#endif
};

static value alloc_builder(LLVMBuilderRef B) {
Expand Down

0 comments on commit 52556d9

Please sign in to comment.