[llvm-commits] [llvm] r163096 - in /llvm/trunk/bindings/ocaml: executionengine/executionengine_ocaml.c llvm/llvm_ocaml.c

Nuno Lopes nunoplopes at sapo.pt
Sun Sep 2 07:42:56 PDT 2012


Author: nlopes
Date: Sun Sep  2 09:42:56 2012
New Revision: 163096

URL: http://llvm.org/viewvc/llvm-project?rev=163096&view=rev
Log:
add support for ocaml 3.12

Modified:
    llvm/trunk/bindings/ocaml/executionengine/executionengine_ocaml.c
    llvm/trunk/bindings/ocaml/llvm/llvm_ocaml.c

Modified: llvm/trunk/bindings/ocaml/executionengine/executionengine_ocaml.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/bindings/ocaml/executionengine/executionengine_ocaml.c?rev=163096&r1=163095&r2=163096&view=diff
==============================================================================
--- llvm/trunk/bindings/ocaml/executionengine/executionengine_ocaml.c (original)
+++ llvm/trunk/bindings/ocaml/executionengine/executionengine_ocaml.c Sun Sep  2 09:42:56 2012
@@ -75,6 +75,9 @@
   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) {

Modified: llvm/trunk/bindings/ocaml/llvm/llvm_ocaml.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/bindings/ocaml/llvm/llvm_ocaml.c?rev=163096&r1=163095&r2=163096&view=diff
==============================================================================
--- llvm/trunk/bindings/ocaml/llvm/llvm_ocaml.c (original)
+++ llvm/trunk/bindings/ocaml/llvm/llvm_ocaml.c Sun Sep  2 09:42:56 2012
@@ -1277,6 +1277,9 @@
   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) {





More information about the llvm-commits mailing list