| ... | ... | @@ -2885,6 +2885,7 @@ pub fn stackAlignment(target: *const Target) u16 { |
| 2885 | 2885 | .ve, |
| 2886 | 2886 | .wasm32, |
| 2887 | 2887 | .wasm64, |
| 2888 | .x86_64, |
| 2888 | 2889 | => return 16, |
| 2889 | 2890 | // Some of the following prongs should really be testing the ABI, but our current `Abi` enum |
| 2890 | 2891 | // can't handle that level of nuance yet. |
| ... | ... | @@ -2897,7 +2898,7 @@ pub fn stackAlignment(target: *const Target) u16 { |
| 2897 | 2898 | .riscv64be, |
| 2898 | 2899 | => if (!target.cpu.has(.riscv, .e)) return 16, |
| 2899 | 2900 | .x86 => if (target.os.tag != .windows and target.os.tag != .uefi) return 16, |
| 2900 | | .x86_64 => return 16, |
| 2901 | .kvx => return 32, |
| 2901 | 2902 | else => {}, |
| 2902 | 2903 | } |
| 2903 | 2904 | |