mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
test: fix up c3ee8078b4
Oops, accidentally didn't run the tests for 32-bit powerpc.
This commit is contained in:
+2
-2
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user