std: Reactivate skipped tests w.r.t. llvm/llvm-project#55522

This commit is contained in:
Jay Petacat 2023-09-26 11:38:20 -06:00 committed by Veikka Tuominen
parent ceaae42e90
commit 37398ed2a5
2 changed files with 0 additions and 12 deletions

View File

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

View File

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