Revert "test: disable some vector ctz/clz behavior tests on LoongArch with LSX"

This reverts commit beb25b0430.

The bug was fixed in LLVM 22.
This commit is contained in:
Alex Rønne Petersen
2026-01-20 00:01:56 +01:00
parent 8eb8034af9
commit a0ad35d0ba
-4
View File
@@ -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);