mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
test: disable some vector ctz/clz behavior tests on LoongArch with LSX
https://github.com/llvm/llvm-project/issues/159529
This commit is contained in:
parent
35d2b1e99a
commit
beb25b0430
1 changed files with 4 additions and 0 deletions
|
|
@ -111,6 +111,8 @@ 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);
|
||||
|
|
@ -197,6 +199,8 @@ 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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue