aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/enum.zig
diff options
context:
space:
mode:
authorjoachimschmidt557 <joachim.schmidt557@outlook.com>2022-09-04 09:00:14 +0200
committerjoachimschmidt557 <joachim.schmidt557@outlook.com>2022-09-09 19:17:18 +0200
commit3794f2c493c9744e19cd7df23c3d4b32565aaa96 (patch)
treef7840fae06c5f0f909e5c58dc1160c211782ca7b /test/behavior/enum.zig
parent25729d6155682933d7ab3aa30c7e060519b2f4e1 (diff)
downloadzig-3794f2c493c9744e19cd7df23c3d4b32565aaa96.tar.gz
zig-3794f2c493c9744e19cd7df23c3d4b32565aaa96.zip
stage2 ARM: implement struct_field_val for registers
Diffstat (limited to 'test/behavior/enum.zig')
-rw-r--r--test/behavior/enum.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/behavior/enum.zig b/test/behavior/enum.zig
index 938c966d22..e2645058f7 100644
--- a/test/behavior/enum.zig
+++ b/test/behavior/enum.zig
@@ -1127,7 +1127,6 @@ test "tag name functions are unique" {
test "size of enum with only one tag which has explicit integer tag type" {
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
const E = enum(u8) { nope = 10 };