From a0ad35d0ba72d966061da4f8e4d9030115173bbf 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 5bea5142fd..3db6c41e32 100644 --- a/test/behavior/math.zig +++ b/test/behavior/math.zig @@ -110,8 +110,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); @@ -193,8 +191,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);