authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-10-19 22:41:37+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-10-23 09:27:16+02:00
loga7f085f0d7cfe4a395b39fb37b7cc89f87b061c3
treec816909d1ee88ebacdc985754a6f0b879e4caf8b
parent0e15b2ac108e82c005eb792b7f485f69165c1cc8
signature Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.Target: fix cCallingConvention() to pick mips64_n32 for muslabin32


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/Target.zig+1-1
......@@ -3467,7 +3467,7 @@ pub fn cCallingConvention(target: *const Target) ?std.builtin.CallingConvention
34673467 .hard => .{ .arm_aapcs_vfp = .{} },
34683468 },
34693469 .mips64, .mips64el => switch (target.abi) {
3470 .gnuabin32 => .{ .mips64_n32 = .{} },
3470 .gnuabin32, .muslabin32 => .{ .mips64_n32 = .{} },
34713471 else => .{ .mips64_n64 = .{} },
34723472 },
34733473 .mips, .mipsel => .{ .mips_o32 = .{} },