std.builtin: Rename CallingConvention.propeller1_sysv to propeller_sysv.

This commit is contained in:
Alex Rønne Petersen 2025-02-16 16:36:33 +01:00
parent e0f8d4e68e
commit aa4ac2f85f
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View File

@ -1835,7 +1835,7 @@ pub const Cpu = struct {
.msp430_eabi,
=> &.{.msp430},
.propeller1_sysv,
.propeller_sysv,
=> &.{.propeller},
.s390x_sysv,
@ -3337,7 +3337,7 @@ pub fn cCallingConvention(target: Target) ?std.builtin.CallingConvention {
else
.{ .m68k_sysv = .{} },
.msp430 => .{ .msp430_eabi = .{} },
.propeller => .{ .propeller1_sysv = .{} },
.propeller => .{ .propeller_sysv = .{} },
.s390x => .{ .s390x_sysv = .{} },
.ve => .{ .ve_sysv = .{} },
.xcore => .{ .xcore_xs1 = .{} },

View File

@ -366,7 +366,7 @@ pub const CallingConvention = union(enum(u8)) {
msp430_eabi: CommonOptions,
/// The standard `propeller` calling convention.
propeller1_sysv: CommonOptions,
propeller_sysv: CommonOptions,
// Calling conventions for the `s390x` architecture.
s390x_sysv: CommonOptions,

View File

@ -11824,7 +11824,7 @@ fn toLlvmCallConvTag(cc_tag: std.builtin.CallingConvention.Tag, target: std.Targ
.m68k_sysv,
.m68k_gnu,
.msp430_eabi,
.propeller1_sysv,
.propeller_sysv,
.s390x_sysv,
.s390x_sysv_vx,
.ve_sysv,