mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
Reenable std.fmt.test.vector for riscv64
The vector codegen issue as described in https://github.com/ziglang/zig/issues/4486 has been fixed upstream.
This commit is contained in:
parent
d94e061ade
commit
a9f06d16fd
1 changed files with 0 additions and 4 deletions
|
|
@ -1211,10 +1211,6 @@ test "positional/alignment/width/precision" {
|
||||||
|
|
||||||
test "vector" {
|
test "vector" {
|
||||||
if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
|
if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
|
||||||
if (builtin.target.cpu.arch == .riscv64) {
|
|
||||||
// https://github.com/ziglang/zig/issues/4486
|
|
||||||
return error.SkipZigTest;
|
|
||||||
}
|
|
||||||
|
|
||||||
const vbool: @Vector(4, bool) = [_]bool{ true, false, true, false };
|
const vbool: @Vector(4, bool) = [_]bool{ true, false, true, false };
|
||||||
const vi64: @Vector(4, i64) = [_]i64{ -2, -1, 0, 1 };
|
const vi64: @Vector(4, i64) = [_]i64{ -2, -1, 0, 1 };
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue