mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:44:43 +01:00
std.math.modf: disable vector test on LoongArch with LSX
https://github.com/llvm/llvm-project/issues/159529
This commit is contained in:
parent
c8c3882380
commit
35d2b1e99a
1 changed files with 1 additions and 0 deletions
|
|
@ -87,6 +87,7 @@ fn ModfTests(comptime T: type) type {
|
|||
test "vector" {
|
||||
if (builtin.os.tag == .macos 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 };
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue