| ... | @@ -7686,6 +7686,7 @@ ZigType *make_int_type(CodeGen *g, bool is_signed, uint32_t size_in_bits) { | ... | @@ -7686,6 +7686,7 @@ ZigType *make_int_type(CodeGen *g, bool is_signed, uint32_t size_in_bits) { |
| 7686 | // However for some targets, LLVM incorrectly reports this as 8. | 7686 | // However for some targets, LLVM incorrectly reports this as 8. |
| 7687 | // See: https://github.com/ziglang/zig/issues/2987 | 7687 | // See: https://github.com/ziglang/zig/issues/2987 |
| 7688 | entry->abi_align = 16; | 7688 | entry->abi_align = 16; |
| | 7689 | entry->abi_size = align_forward(entry->abi_size, entry->abi_align); |
| 7689 | } | 7690 | } |
| 7690 | } | 7691 | } |
| 7691 | | 7692 | |