| author | |
| committer | |
| log | 9d0bb7ada81f91d16d985340ab8d9fe98ad40565 |
| tree | 4545a8df74d459370166525c801ae097c87c3f76 |
| parent | 2958a90515859fa129880e0f7a39d7990dad853f |
| signature |
See: https://github.com/ziglang/zig/issues/218921 files changed, 2 insertions(+), 1 deletions(-)
test/behavior/atomics.zig+2-1| ... | ... | @@ -5,7 +5,8 @@ const expectEqual = std.testing.expectEqual; |
| 5 | 5 | |
| 6 | 6 | const supports_128_bit_atomics = switch (builtin.cpu.arch) { |
| 7 | 7 | // TODO: Ideally this could be sync'd with the logic in Sema. |
| 8 | .aarch64, .aarch64_be => true, | |
| 8 | .aarch64 => true, | |
| 9 | .aarch64_be => false, // Fails due to LLVM issues. | |
| 9 | 10 | .x86_64 => std.Target.x86.featureSetHas(builtin.cpu.features, .cx16), |
| 10 | 11 | else => false, |
| 11 | 12 | }; |