commit aa4ac2f85fc145dafcd4de18065bdfa28f17cea0 (tree)
parent e0f8d4e68e159f3b33ab7397f54379345ec683a9
Author: Alex Rønne Petersen <alex@alexrp.com>
Date: Sun, 16 Feb 2025 16:36:33 +0100
std.builtin: Rename CallingConvention.propeller1_sysv to propeller_sysv.
Diffstat:
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/std/Target.zig b/lib/std/Target.zig
@@ -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 = .{} },
diff --git a/lib/std/builtin.zig b/lib/std/builtin.zig
@@ -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,
diff --git a/src/codegen/llvm.zig b/src/codegen/llvm.zig
@@ -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,