| ... | @@ -5,7 +5,8 @@ const expectEqual = std.testing.expectEqual; | ... | @@ -5,7 +5,8 @@ const expectEqual = std.testing.expectEqual; |
| 5 | | 5 | |
| 6 | const supports_128_bit_atomics = switch (builtin.cpu.arch) { | 6 | const supports_128_bit_atomics = switch (builtin.cpu.arch) { |
| 7 | // TODO: Ideally this could be sync'd with the logic in Sema. | 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 | .x86_64 => std.Target.x86.featureSetHas(builtin.cpu.features, .cx16), | 10 | .x86_64 => std.Target.x86.featureSetHas(builtin.cpu.features, .cx16), |
| 10 | else => false, | 11 | else => false, |
| 11 | }; | 12 | }; |