| ... | @@ -87,6 +87,7 @@ fn ModfTests(comptime T: type) type { | ... | @@ -87,6 +87,7 @@ fn ModfTests(comptime T: type) type { |
| 87 | test "vector" { | 87 | test "vector" { |
| 88 | if (builtin.os.tag == .macos and builtin.cpu.arch == .aarch64) return error.SkipZigTest; | 88 | if (builtin.os.tag == .macos and builtin.cpu.arch == .aarch64) return error.SkipZigTest; |
| 89 | if (builtin.cpu.arch == .s390x) return error.SkipZigTest; | 89 | if (builtin.cpu.arch == .s390x) return error.SkipZigTest; |
| | 90 | if (comptime builtin.cpu.has(.loongarch, .lsx)) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/159529 |
| 90 | | 91 | |
| 91 | const widths = [_]comptime_int{ 1, 2, 3, 4, 8, 16 }; | 92 | const widths = [_]comptime_int{ 1, 2, 3, 4, 8, 16 }; |
| 92 | | 93 | |