aboutsummaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorMichael Dusan <michael.dusan@gmail.com>2024-03-15 02:28:50 -0400
committerMichael Dusan <michael.dusan@gmail.com>2024-03-15 02:28:50 -0400
commit5ce40e61c6f5c05925aa5116cc6c61fbae8a6263 (patch)
treec2bdea1b2eeb0b2e9d551e6e5621390739818e3a /src/arch
parentcf4a2099e1e3c600ee65628153a280f5b2cd51fd (diff)
downloadzig-5ce40e61c6f5c05925aa5116cc6c61fbae8a6263.tar.gz
zig-5ce40e61c6f5c05925aa5116cc6c61fbae8a6263.zip
bsd: debitrot AtomicOrder renames
- complete std.builtin.AtomicOrder renames that were missed from 6067d39522f
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/sparc64/CodeGen.zig8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/sparc64/CodeGen.zig b/src/arch/sparc64/CodeGen.zig
index 0ab82abdd6..b6b3f30879 100644
--- a/src/arch/sparc64/CodeGen.zig
+++ b/src/arch/sparc64/CodeGen.zig
@@ -647,10 +647,10 @@ fn genBody(self: *Self, body: []const Air.Inst.Index) InnerError!void {
.call_never_tail => try self.airCall(inst, .never_tail),
.call_never_inline => try self.airCall(inst, .never_inline),
- .atomic_store_unordered => @panic("TODO try self.airAtomicStore(inst, .Unordered)"),
- .atomic_store_monotonic => @panic("TODO try self.airAtomicStore(inst, .Monotonic)"),
- .atomic_store_release => @panic("TODO try self.airAtomicStore(inst, .Release)"),
- .atomic_store_seq_cst => @panic("TODO try self.airAtomicStore(inst, .SeqCst)"),
+ .atomic_store_unordered => @panic("TODO try self.airAtomicStore(inst, .unordered)"),
+ .atomic_store_monotonic => @panic("TODO try self.airAtomicStore(inst, .monotonic)"),
+ .atomic_store_release => @panic("TODO try self.airAtomicStore(inst, .release)"),
+ .atomic_store_seq_cst => @panic("TODO try self.airAtomicStore(inst, .seq_cst)"),
.struct_field_ptr_index_0 => try self.airStructFieldPtrIndex(inst, 0),
.struct_field_ptr_index_1 => try self.airStructFieldPtrIndex(inst, 1),