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 };