mirror of
https://github.com/ziglang/zig.git
synced 2026-02-14 13:30:45 +00:00
test: Disable store vector with memset on soft float arm.
https://github.com/ziglang/zig/issues/16177
This commit is contained in:
parent
4fcd3e00fa
commit
5285f41267
@ -1442,7 +1442,14 @@ test "store vector with memset" {
|
||||
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
|
||||
|
||||
if (builtin.zig_backend == .stage2_llvm) {
|
||||
// LLVM 16 ERROR: "Converting bits to bytes lost precision"
|
||||
// https://github.com/ziglang/zig/issues/16177
|
||||
switch (builtin.target.cpu.arch) {
|
||||
.arm,
|
||||
.armeb,
|
||||
.thumb,
|
||||
.thumbeb,
|
||||
=> if (builtin.target.floatAbi() == .soft) return error.SkipZigTest,
|
||||
.wasm32,
|
||||
.mips,
|
||||
.mipsel,
|
||||
@ -1451,11 +1458,7 @@ test "store vector with memset" {
|
||||
.riscv64,
|
||||
.powerpc,
|
||||
.powerpc64,
|
||||
=> {
|
||||
// LLVM 16 ERROR: "Converting bits to bytes lost precision"
|
||||
// https://github.com/ziglang/zig/issues/16177
|
||||
return error.SkipZigTest;
|
||||
},
|
||||
=> return error.SkipZigTest,
|
||||
else => {},
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user