diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-05-02 01:27:21 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-05-03 04:25:14 -0400 |
| commit | 3a30b827414926dceccf606d6557e00f1cc6458d (patch) | |
| tree | 7c824b5d6d1e09f3ae2becd3a3e2db6596528e68 /test/behavior | |
| parent | 3f5592c114ffbc28e7ffb9e9e411870b31d81dd8 (diff) | |
| download | zig-3a30b827414926dceccf606d6557e00f1cc6458d.tar.gz zig-3a30b827414926dceccf606d6557e00f1cc6458d.zip | |
x86_64: implement fieldParentPtr
Diffstat (limited to 'test/behavior')
| -rw-r--r-- | test/behavior/struct.zig | 1 | ||||
| -rw-r--r-- | test/behavior/tuple.zig | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig index e533e34cc3..d5972b9161 100644 --- a/test/behavior/struct.zig +++ b/test/behavior/struct.zig @@ -1333,7 +1333,6 @@ test "under-aligned struct field" { } test "fieldParentPtr of a zero-bit field" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO diff --git a/test/behavior/tuple.zig b/test/behavior/tuple.zig index 11cc8b2dce..c1e5f40a46 100644 --- a/test/behavior/tuple.zig +++ b/test/behavior/tuple.zig @@ -209,7 +209,6 @@ test "initializing anon struct with explicit type" { } test "fieldParentPtr of tuple" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO @@ -220,7 +219,6 @@ test "fieldParentPtr of tuple" { } test "fieldParentPtr of anon struct" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO |
