Skip to content

Commit b75bde6

Browse files
alan-j-huaeubanks
authored andcommitted
[llvm-ocaml] Fix arity mismatch in pointer bindings
Reviewed By: nikic Differential Revision: https://reviews.llvm.org/D135842
1 parent 576283c commit b75bde6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/bindings/ocaml/llvm/llvm_ocaml.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ LLVMTypeRef llvm_array_type(LLVMTypeRef ElementTy, value Count) {
571571
}
572572

573573
/* llcontext -> lltype */
574-
LLVMTypeRef llvm_pointer_type(LLVMContextRef C, value AddressSpace) {
574+
LLVMTypeRef llvm_pointer_type(LLVMContextRef C) {
575575
return LLVMPointerTypeInContext(C, 0);
576576
}
577577

0 commit comments

Comments
 (0)