diff options
| author | gingerBill <bill@gingerbill.org> | 2025-05-17 11:36:30 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2025-05-17 11:36:30 +0100 |
| commit | 63304af47efae07dc540b8efb115b9ca9604f349 (patch) | |
| tree | 34456114a5df109cce5d2fb3efe6f00865e999f8 /src/llvm_abi.cpp | |
| parent | d77124feae57a919734e77e88c3801d86ee097dd (diff) | |
| parent | 326454f0f00945a2a4f5d02e8d8c5bc37f472883 (diff) | |
Merge branch 'master' of https://github.com/odin-lang/Odin
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 baad3f873..af08722c3 100644 --- a/src/llvm_abi.cpp +++ b/src/llvm_abi.cpp @@ -1246,7 +1246,7 @@ namespace lbAbiArm64 { cast_type = LLVMIntTypeInContext(c, cast(unsigned)(size*8)); } else { LLVMTypeRef llvm_i64 = LLVMIntTypeInContext(c, 64); - cast_type = LLVMArrayType2(llvm_i64, 2); + cast_type = llvm_array_type(llvm_i64, 2); } return lb_arg_type_direct(return_type, cast_type, nullptr, nullptr); } |