[PATCH] D135842: [llvm-ocaml] Fix arity mismatch in pointer bindings

Arthur Eubanks via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 13 10:07:44 PDT 2022


This revision was automatically updated to reflect the committed changes.
Closed by commit rGb75bde63215b: [llvm-ocaml] Fix arity mismatch in pointer bindings (authored by alan, committed by aeubanks).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D135842/new/

https://reviews.llvm.org/D135842

Files:
  llvm/bindings/ocaml/llvm/llvm_ocaml.c


Index: llvm/bindings/ocaml/llvm/llvm_ocaml.c
===================================================================
--- llvm/bindings/ocaml/llvm/llvm_ocaml.c
+++ llvm/bindings/ocaml/llvm/llvm_ocaml.c
@@ -571,7 +571,7 @@
 }
 
 /* llcontext -> lltype */
-LLVMTypeRef llvm_pointer_type(LLVMContextRef C, value AddressSpace) {
+LLVMTypeRef llvm_pointer_type(LLVMContextRef C) {
   return LLVMPointerTypeInContext(C, 0);
 }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D135842.467520.patch
Type: text/x-patch
Size: 418 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221013/f47efb18/attachment.bin>


More information about the llvm-commits mailing list