From 37398ed2a5242ece4385e0a61a55a79eed21a5c6 Mon Sep 17 00:00:00 2001 From: Jay Petacat Date: Tue, 26 Sep 2023 11:38:20 -0600 Subject: [PATCH] std: Reactivate skipped tests w.r.t. llvm/llvm-project#55522 --- lib/std/mem.zig | 6 ------ lib/std/simd.zig | 6 ------ 2 files changed, 12 deletions(-) diff --git a/lib/std/mem.zig b/lib/std/mem.zig index 011be7708da67cf0e8cc6859eaa91d4f9c9740e9..2f51ddb5e2f0fc22c1f78d080bf925644094cf38 100644 --- a/lib/std/mem.zig +++ b/lib/std/mem.zig @@ -316,12 +316,6 @@ pub fn zeroes(comptime T: type) T { } test "zeroes" { - if (builtin.zig_backend == .stage2_llvm) { - // Regressed in LLVM 14: - // https://github.com/llvm/llvm-project/issues/55522 - return error.SkipZigTest; - } - const C_struct = extern struct { x: u32, y: u32, diff --git a/lib/std/simd.zig b/lib/std/simd.zig index 1a6b7131487aaaac07eb91d866b4bcfcb2aa6255..5a966c53e5cce7286815073fb14910872b3f7be7 100644 --- a/lib/std/simd.zig +++ b/lib/std/simd.zig @@ -428,12 +428,6 @@ test "vector prefix scan" { return error.SkipZigTest; } - if (builtin.zig_backend == .stage2_llvm) { - // Regressed in LLVM 14: - // https://github.com/llvm/llvm-project/issues/55522 - return error.SkipZigTest; - } - const int_base = @Vector(4, i32){ 11, 23, 9, -21 }; const float_base = @Vector(4, f32){ 2, 0.5, -10, 6.54321 }; const bool_base = @Vector(4, bool){ true, false, true, false }; -- 2.54.0