File tree Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -343,11 +343,6 @@ test "@abs float vectors" {
343
343
if (builtin .zig_backend == .stage2_riscv64 ) return error .SkipZigTest ;
344
344
if (builtin .zig_backend == .stage2_x86_64 and builtin .target .ofmt != .elf and builtin .target .ofmt != .macho ) return error .SkipZigTest ;
345
345
346
- // https://github.com/ziglang/zig/issues/12827
347
- if (builtin .zig_backend == .stage2_llvm and
348
- builtin .os .tag == .macos and
349
- builtin .target .cpu .arch == .x86_64 ) return error .SkipZigTest ;
350
-
351
346
@setEvalBranchQuota (2000 );
352
347
try comptime testAbsFloatVectors (f16 , 1 );
353
348
try testAbsFloatVectors (f16 , 1 );
Original file line number Diff line number Diff line change @@ -357,13 +357,6 @@ test "vector @splat" {
357
357
if (builtin .zig_backend == .stage2_spirv64 ) return error .SkipZigTest ;
358
358
if (builtin .zig_backend == .stage2_x86_64 and builtin .target .ofmt != .elf and builtin .target .ofmt != .macho ) return error .SkipZigTest ;
359
359
360
- if (builtin .zig_backend == .stage2_llvm and
361
- builtin .os .tag == .macos )
362
- {
363
- // LLVM 15 regression: https://github.com/ziglang/zig/issues/12827
364
- return error .SkipZigTest ;
365
- }
366
-
367
360
const S = struct {
368
361
fn testForT (comptime N : comptime_int , v : anytype ) ! void {
369
362
const T = @TypeOf (v );
You can’t perform that action at this time.
0 commit comments