diff options
| author | gingerBill <bill@gingerbill.org> | 2023-06-07 00:30:14 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-06-07 00:30:14 +0100 |
| commit | f622a8393cd3e288cefe2f5636b0aa1ab58fe0ca (patch) | |
| tree | 113ec42d837e344781ace92b377cbca89c7c26a1 /src/llvm_backend_general.cpp | |
| parent | d75df7fd8a7f96a64bd28c1b180a6cea7ea6137b (diff) | |
Change ABI for wasm64p32 on slices and structs
Diffstat (limited to 'src/llvm_backend_general.cpp')
| -rw-r--r-- | src/llvm_backend_general.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/llvm_backend_general.cpp b/src/llvm_backend_general.cpp index 7f25d57b2..e5f3e3081 100644 --- a/src/llvm_backend_general.cpp +++ b/src/llvm_backend_general.cpp @@ -1580,7 +1580,7 @@ gb_internal LLVMTypeRef lb_type_internal_for_procedures_raw(lbModule *m, Type *t } } GB_ASSERT(param_index == param_count); - lbFunctionType *ft = lb_get_abi_info(m->ctx, params, param_count, ret, ret != nullptr, return_is_tuple, type->Proc.calling_convention); + lbFunctionType *ft = lb_get_abi_info(m->ctx, params, param_count, ret, ret != nullptr, return_is_tuple, type->Proc.calling_convention, type); { for_array(j, ft->args) { auto arg = ft->args[j]; |