| author | |
| committer | |
| log | aa4ac2f85fc145dafcd4de18065bdfa28f17cea0 |
| tree | e6263cfa267d09169364b810d253e112f8ca7274 |
| parent | e0f8d4e68e159f3b33ab7397f54379345ec683a9 |
| signature |
3 files changed, 4 insertions(+), 4 deletions(-)
lib/std/Target.zig+2-2| ... | ... | @@ -1835,7 +1835,7 @@ pub const Cpu = struct { |
| 1835 | 1835 | .msp430_eabi, |
| 1836 | 1836 | => &.{.msp430}, |
| 1837 | 1837 | |
| 1838 | .propeller1_sysv, | |
| 1838 | .propeller_sysv, | |
| 1839 | 1839 | => &.{.propeller}, |
| 1840 | 1840 | |
| 1841 | 1841 | .s390x_sysv, |
| ... | ... | @@ -3337,7 +3337,7 @@ pub fn cCallingConvention(target: Target) ?std.builtin.CallingConvention { |
| 3337 | 3337 | else |
| 3338 | 3338 | .{ .m68k_sysv = .{} }, |
| 3339 | 3339 | .msp430 => .{ .msp430_eabi = .{} }, |
| 3340 | .propeller => .{ .propeller1_sysv = .{} }, | |
| 3340 | .propeller => .{ .propeller_sysv = .{} }, | |
| 3341 | 3341 | .s390x => .{ .s390x_sysv = .{} }, |
| 3342 | 3342 | .ve => .{ .ve_sysv = .{} }, |
| 3343 | 3343 | .xcore => .{ .xcore_xs1 = .{} }, |
lib/std/builtin.zig+1-1| ... | ... | @@ -366,7 +366,7 @@ pub const CallingConvention = union(enum(u8)) { |
| 366 | 366 | msp430_eabi: CommonOptions, |
| 367 | 367 | |
| 368 | 368 | /// The standard `propeller` calling convention. |
| 369 | propeller1_sysv: CommonOptions, | |
| 369 | propeller_sysv: CommonOptions, | |
| 370 | 370 | |
| 371 | 371 | // Calling conventions for the `s390x` architecture. |
| 372 | 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 | 11824 | .m68k_sysv, |
| 11825 | 11825 | .m68k_gnu, |
| 11826 | 11826 | .msp430_eabi, |
| 11827 | .propeller1_sysv, | |
| 11827 | .propeller_sysv, | |
| 11828 | 11828 | .s390x_sysv, |
| 11829 | 11829 | .s390x_sysv_vx, |
| 11830 | 11830 | .ve_sysv, |