authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-02-16 16:36:33+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-02-17 19:17:56+01:00
logaa4ac2f85fc145dafcd4de18065bdfa28f17cea0
treee6263cfa267d09169364b810d253e112f8ca7274
parente0f8d4e68e159f3b33ab7397f54379345ec683a9
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.builtin: Rename CallingConvention.propeller1_sysv to propeller_sysv.


3 files changed, 4 insertions(+), 4 deletions(-)

lib/std/Target.zig+2-2
......@@ -1835,7 +1835,7 @@ pub const Cpu = struct {
18351835 .msp430_eabi,
18361836 => &.{.msp430},
18371837
1838 .propeller1_sysv,
1838 .propeller_sysv,
18391839 => &.{.propeller},
18401840
18411841 .s390x_sysv,
......@@ -3337,7 +3337,7 @@ pub fn cCallingConvention(target: Target) ?std.builtin.CallingConvention {
33373337 else
33383338 .{ .m68k_sysv = .{} },
33393339 .msp430 => .{ .msp430_eabi = .{} },
3340 .propeller => .{ .propeller1_sysv = .{} },
3340 .propeller => .{ .propeller_sysv = .{} },
33413341 .s390x => .{ .s390x_sysv = .{} },
33423342 .ve => .{ .ve_sysv = .{} },
33433343 .xcore => .{ .xcore_xs1 = .{} },
lib/std/builtin.zig+1-1
......@@ -366,7 +366,7 @@ pub const CallingConvention = union(enum(u8)) {
366366 msp430_eabi: CommonOptions,
367367
368368 /// The standard `propeller` calling convention.
369 propeller1_sysv: CommonOptions,
369 propeller_sysv: CommonOptions,
370370
371371 // Calling conventions for the `s390x` architecture.
372372 s390x_sysv: CommonOptions,
src/codegen/llvm.zig+1-1
......@@ -11824,7 +11824,7 @@ fn toLlvmCallConvTag(cc_tag: std.builtin.CallingConvention.Tag, target: std.Targ
1182411824 .m68k_sysv,
1182511825 .m68k_gnu,
1182611826 .msp430_eabi,
11827 .propeller1_sysv,
11827 .propeller_sysv,
1182811828 .s390x_sysv,
1182911829 .s390x_sysv_vx,
1183011830 .ve_sysv,