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 {...@@ -1835,7 +1835,7 @@ pub const Cpu = struct {
1835 .msp430_eabi,1835 .msp430_eabi,
1836 => &.{.msp430},1836 => &.{.msp430},
18371837
1838 .propeller1_sysv,1838 .propeller_sysv,
1839 => &.{.propeller},1839 => &.{.propeller},
18401840
1841 .s390x_sysv,1841 .s390x_sysv,
...@@ -3337,7 +3337,7 @@ pub fn cCallingConvention(target: Target) ?std.builtin.CallingConvention {...@@ -3337,7 +3337,7 @@ pub fn cCallingConvention(target: Target) ?std.builtin.CallingConvention {
3337 else3337 else
3338 .{ .m68k_sysv = .{} },3338 .{ .m68k_sysv = .{} },
3339 .msp430 => .{ .msp430_eabi = .{} },3339 .msp430 => .{ .msp430_eabi = .{} },
3340 .propeller => .{ .propeller1_sysv = .{} },3340 .propeller => .{ .propeller_sysv = .{} },
3341 .s390x => .{ .s390x_sysv = .{} },3341 .s390x => .{ .s390x_sysv = .{} },
3342 .ve => .{ .ve_sysv = .{} },3342 .ve => .{ .ve_sysv = .{} },
3343 .xcore => .{ .xcore_xs1 = .{} },3343 .xcore => .{ .xcore_xs1 = .{} },
lib/std/builtin.zig+1-1
...@@ -366,7 +366,7 @@ pub const CallingConvention = union(enum(u8)) {...@@ -366,7 +366,7 @@ pub const CallingConvention = union(enum(u8)) {
366 msp430_eabi: CommonOptions,366 msp430_eabi: CommonOptions,
367367
368 /// The standard `propeller` calling convention.368 /// The standard `propeller` calling convention.
369 propeller1_sysv: CommonOptions,369 propeller_sysv: CommonOptions,
370370
371 // Calling conventions for the `s390x` architecture.371 // Calling conventions for the `s390x` architecture.
372 s390x_sysv: CommonOptions,372 s390x_sysv: CommonOptions,
src/codegen/llvm.zig+1-1
...@@ -11824,7 +11824,7 @@ fn toLlvmCallConvTag(cc_tag: std.builtin.CallingConvention.Tag, target: std.Targ...@@ -11824,7 +11824,7 @@ fn toLlvmCallConvTag(cc_tag: std.builtin.CallingConvention.Tag, target: std.Targ
11824 .m68k_sysv,11824 .m68k_sysv,
11825 .m68k_gnu,11825 .m68k_gnu,
11826 .msp430_eabi,11826 .msp430_eabi,
11827 .propeller1_sysv,11827 .propeller_sysv,
11828 .s390x_sysv,11828 .s390x_sysv,
11829 .s390x_sysv_vx,11829 .s390x_sysv_vx,
11830 .ve_sysv,11830 .ve_sysv,