forked from OSchip/llvm-project
[llvm-ocaml] Fix arity mismatch in pointer bindings
Reviewed By: nikic Differential Revision: https://reviews.llvm.org/D135842
This commit is contained in:
parent
576283c3a8
commit
b75bde6321
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue