Skip to content

Commit f1678a7

Browse files
committed
ez80_sysv -> ez80_cet
1 parent ab40602 commit f1678a7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/std/Target.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1972,7 +1972,7 @@ pub const Cpu = struct {
19721972
.spirv_vertex,
19731973
=> &.{ .spirv32, .spirv64 },
19741974

1975-
.ez80_ti,
1975+
.ez80_cet,
19761976
.ez80_tiflags,
19771977
=> &.{.ez80},
19781978
};
@@ -3766,7 +3766,7 @@ pub fn cCallingConvention(target: *const Target) ?std.builtin.CallingConvention
37663766
.amdgcn => .{ .amdgcn_device = .{} },
37673767
.nvptx, .nvptx64 => .nvptx_device,
37683768
.spirv32, .spirv64 => .spirv_device,
3769-
.ez80 => .ez80_ti,
3769+
.ez80 => .ez80_cet,
37703770
};
37713771
}
37723772

lib/std/builtin.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ pub const CallingConvention = union(enum(u8)) {
371371
spirv_vertex,
372372

373373
// Calling conventions for the `ez80` architecture.
374-
ez80_ti,
374+
ez80_cet,
375375
ez80_tiflags,
376376

377377
/// Options shared across most calling conventions.

src/codegen/llvm.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11983,7 +11983,7 @@ fn toLlvmCallConvTag(cc_tag: std.builtin.CallingConvention.Tag, target: *const s
1198311983
.spirv_kernel,
1198411984
.spirv_fragment,
1198511985
.spirv_vertex,
11986-
.ez80_ti,
11986+
.ez80_cet,
1198711987
.ez80_tiflags,
1198811988
=> null,
1198911989
};

0 commit comments

Comments
 (0)