From 4fd1ec78e93d496811534c6e3aa9af126650f5de Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Mon, 2 Nov 2020 11:46:26 +0100 Subject: [PATCH] std: Re-enable union behaviour test for mips targets --- test/stage1/behavior/union.zig | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/stage1/behavior/union.zig b/test/stage1/behavior/union.zig index a1d38ee2e3..915f412c51 100644 --- a/test/stage1/behavior/union.zig +++ b/test/stage1/behavior/union.zig @@ -623,9 +623,6 @@ test "0-sized extern union definition" { } test "union initializer generates padding only if needed" { - // https://github.com/ziglang/zig/issues/5127 - if (std.Target.current.cpu.arch == .mips) return error.SkipZigTest; - const U = union(enum) { A: u24, };