From 96bbe31cda46f63e3d562bec66bdbb2b03113d8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Tue, 20 Jan 2026 00:01:56 +0100 Subject: [PATCH] Revert "test: disable some vector ctz/clz behavior tests on LoongArch with LSX" This reverts commit beb25b0430d96e2e87f6af189062bdd3a02b6e45. The bug was fixed in LLVM 22. --- test/behavior/math.zig | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/behavior/math.zig b/test/behavior/math.zig index 671dd9153e6305de83fc69572b6633029368aa30..5d8498f4a0566da10fd4c772cccea3e9a2cf079d 100644 --- a/test/behavior/math.zig +++ b/test/behavior/math.zig @@ -111,8 +111,6 @@ test "@clz vectors" { } fn testClzVectors() !void { - if (comptime builtin.cpu.has(.loongarch, .lsx)) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/159529 - const Vu4 = @Vector(64, u4); const Vu8 = @Vector(64, u8); const Vu128 = @Vector(64, u128); @@ -195,8 +193,6 @@ test "@ctz vectors" { } fn testCtzVectors() !void { - if (comptime builtin.cpu.has(.loongarch, .lsx)) return error.SkipZigTest; // https://github.com/llvm/llvm-project/issues/159529 - const Vu4 = @Vector(64, u4); const Vu8 = @Vector(64, u8); @setEvalBranchQuota(10_000); -- 2.54.0