zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 9161923405d1048dd6932d933b14feeb1d7c2849 (tree)
parent 6b4f57a2573457eefd8f63ed2ac648c08740ab49
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Mon, 27 Oct 2025 06:09:33 +0100

Revert "std.Target: xtensa defaults to windowed ABI"

This reverts commit c55e83eab1369373fe6db5072802c2fc1c4d7ebc.

This was a misreading of XtensaFeatures.td on my part.

Diffstat:
Mlib/std/Target.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/Target.zig b/lib/std/Target.zig @@ -3713,7 +3713,7 @@ pub fn cCallingConvention(target: *const Target) ?std.builtin.CallingConvention .sh, .sheb => .{ .sh_gnu = .{} }, .ve => .{ .ve_sysv = .{} }, .xcore => .{ .xcore_xs1 = .{} }, - .xtensa, .xtensaeb => .{ .xtensa_windowed = .{} }, + .xtensa, .xtensaeb => .{ .xtensa_call0 = .{} }, .amdgcn => .{ .amdgcn_device = .{} }, .nvptx, .nvptx64 => .nvptx_device, .spirv32, .spirv64 => .spirv_device,