Oops, accidentally didn't run the tests for 32-bit powerpc.
This commit is contained in:
Alex Rønne Petersen 2025-12-16 09:01:51 +01:00
parent 00903d35b1
commit b9eefe17af
No known key found for this signature in database

View file

@ -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 {