| author | |
| committer | |
| log | 35d2b1e99a2bf57f76d3317061a1b74d145f3c59 |
| tree | 2d9d08ca5b183642ab7731ad5a0b28c0e9833570 |
| parent | c8c38823805ad1fc555d406f39e2b64e81db3872 |
| signature |
https://github.com/llvm/llvm-project/issues/1595291 files changed, 1 insertions(+), 0 deletions(-)
lib/std/math/modf.zig+1| ... | ... | @@ -87,6 +87,7 @@ fn ModfTests(comptime T: type) type { |
| 87 | 87 | test "vector" { |
| 88 | 88 | if (builtin.os.tag == .macos and builtin.cpu.arch == .aarch64) return error.SkipZigTest; |
| 89 | 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 | 92 | const widths = [_]comptime_int{ 1, 2, 3, 4, 8, 16 }; |
| 92 | 93 |