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

This reverts commit 35d2b1e99a.

The bug was fixed in LLVM 22.
This commit is contained in:
Alex Rønne Petersen
2026-01-20 00:02:06 +01:00
parent 96bbe31cda
commit b01cc264e1
-1
View File
@@ -87,7 +87,6 @@ fn ModfTests(comptime T: type) type {
test "vector" {
if (builtin.os.tag.isDarwin() and builtin.cpu.arch == .aarch64) return error.SkipZigTest;
if (builtin.cpu.arch == .s390x) return error.SkipZigTest;
if (comptime builtin.cpu.has(.loongarch, .lsx)) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/159529
const widths = [_]comptime_int{ 1, 2, 3, 4, 8, 16 };