mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-07 23:04:34 +01:00
test: fix up c3ee8078b4
Oops, accidentally didn't run the tests for 32-bit powerpc.
This commit is contained in:
parent
00903d35b1
commit
b9eefe17af
1 changed files with 2 additions and 2 deletions
|
|
@ -1267,7 +1267,7 @@ extern fn c_ret_vector_256_bool() Vector256Bool;
|
|||
extern fn c_ret_vector_512_bool() Vector512Bool;
|
||||
|
||||
test "bool simd vector" {
|
||||
if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch != .wasm32) return error.SkipZigTest;
|
||||
if (builtin.zig_backend == .stage2_llvm and (builtin.cpu.arch != .powerpc and builtin.cpu.arch != .wasm32)) return error.SkipZigTest;
|
||||
|
||||
{
|
||||
c_vector_2_bool(.{
|
||||
|
|
@ -3373,7 +3373,7 @@ test "bool simd vector" {
|
|||
comptime {
|
||||
skip: {
|
||||
if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch == .x86_64) break :skip;
|
||||
if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch.isPowerPC()) break :skip;
|
||||
if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch.isPowerPC64()) break :skip;
|
||||
|
||||
_ = struct {
|
||||
export fn zig_vector_2_bool(vec: Vector2Bool) void {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue