[llvm-ocaml] Fix arity mismatch in pointer bindings

Reviewed By: nikic

Differential Revision: https://reviews.llvm.org/D135842
This commit is contained in:
Alan Hu 2022-10-13 10:07:06 -07:00 committed by Arthur Eubanks
parent 576283c3a8
commit b75bde6321
1 changed files with 1 additions and 1 deletions

View File

@ -571,7 +571,7 @@ LLVMTypeRef llvm_array_type(LLVMTypeRef ElementTy, value Count) {
}
/* llcontext -> lltype */
LLVMTypeRef llvm_pointer_type(LLVMContextRef C, value AddressSpace) {
LLVMTypeRef llvm_pointer_type(LLVMContextRef C) {
return LLVMPointerTypeInContext(C, 0);
}