diff options
| author | gingerBill <bill@gingerbill.org> | 2022-12-21 23:59:31 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-12-21 23:59:31 +0000 |
| commit | b9a2426e577e15ae861ce73b7c5a86a0df496e65 (patch) | |
| tree | 04380830523707263d399cce9152ea03174266ef /src/llvm_abi.cpp | |
| parent | 3040361faca44fd8b1c8a5a7bb86c73a1c46e08f (diff) | |
| parent | 81037b30919340b4d2d0cf1304fbf8fde0591c1f (diff) | |
Merge branch 'master' into compiler-improvements-2022-12
Diffstat (limited to 'src/llvm_abi.cpp')
| -rw-r--r-- | src/llvm_abi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/llvm_abi.cpp b/src/llvm_abi.cpp index 7b82fddeb..1204050ef 100644 --- a/src/llvm_abi.cpp +++ b/src/llvm_abi.cpp @@ -987,8 +987,8 @@ namespace lbAbiArm64 { gb_internal LB_ABI_INFO(abi_info) { lbFunctionType *ft = gb_alloc_item(permanent_allocator(), lbFunctionType); ft->ctx = c; + ft->args = compute_arg_types(c, arg_types, arg_count); ft->ret = compute_return_type(ft, c, return_type, return_is_defined, return_is_tuple); - ft -> args = compute_arg_types(c, arg_types, arg_count); ft->calling_convention = calling_convention; return ft; } |