diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-03-23 02:03:43 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-03-24 17:57:58 -0400 |
| commit | 12c07fcf20aba9e986b5b2131515b33e3d27176a (patch) | |
| tree | 1dceb6741c25a00f4742359acdaf4f5e9d4ef98a /test/behavior/enum.zig | |
| parent | dbe1b4a7e5731e4fb17d42b754faf1052aa78f32 (diff) | |
| download | zig-12c07fcf20aba9e986b5b2131515b33e3d27176a.tar.gz zig-12c07fcf20aba9e986b5b2131515b33e3d27176a.zip | |
x86_64: fix more value tracking bugs
Diffstat (limited to 'test/behavior/enum.zig')
| -rw-r--r-- | test/behavior/enum.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/behavior/enum.zig b/test/behavior/enum.zig index 9076f9f9ac..72784d9abc 100644 --- a/test/behavior/enum.zig +++ b/test/behavior/enum.zig @@ -904,6 +904,7 @@ test "enum literal casting to tagged union" { if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO + if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; const Arch = union(enum) { x86_64, |
