authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-09-18 12:41:03+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-09-18 12:42:24+02:00
log35d2b1e99a2bf57f76d3317061a1b74d145f3c59
tree2d9d08ca5b183642ab7731ad5a0b28c0e9833570
parentc8c38823805ad1fc555d406f39e2b64e81db3872
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.math.modf: disable vector test on LoongArch with LSX

https://github.com/llvm/llvm-project/issues/159529

1 files changed, 1 insertions(+), 0 deletions(-)

lib/std/math/modf.zig+1
......@@ -87,6 +87,7 @@ fn ModfTests(comptime T: type) type {
8787 test "vector" {
8888 if (builtin.os.tag == .macos and builtin.cpu.arch == .aarch64) return error.SkipZigTest;
8989 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
9091
9192 const widths = [_]comptime_int{ 1, 2, 3, 4, 8, 16 };
9293