diff options
| author | Joachim Schmidt <joachim.schmidt557@outlook.com> | 2022-03-05 14:30:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-05 14:30:02 +0100 |
| commit | ac936c0aba94c2cf5ff8537c1808445eacf38a15 (patch) | |
| tree | 3104f7247031c726a9d0085dd44508c2f3bbcb61 /test/behavior/struct.zig | |
| parent | e297860158cabb74a261a979f2f17305716c6e10 (diff) | |
| parent | a06e9eca45f72b28ed9ca00da5c9562e969cc84d (diff) | |
| download | zig-ac936c0aba94c2cf5ff8537c1808445eacf38a15.tar.gz zig-ac936c0aba94c2cf5ff8537c1808445eacf38a15.zip | |
Merge pull request #11059 from joachimschmidt557/stage2-aarch64
stage2 AArch64: various improvements
Diffstat (limited to 'test/behavior/struct.zig')
| -rw-r--r-- | test/behavior/struct.zig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig index fdf6da15a8..32e374d3d5 100644 --- a/test/behavior/struct.zig +++ b/test/behavior/struct.zig @@ -213,8 +213,6 @@ fn makeBar2(x: i32, y: i32) Bar { } test "call method with mutable reference to struct with no fields" { - if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; - const S = struct { fn doC(s: *const @This()) bool { _ = s; @@ -768,7 +766,6 @@ test "pointer to packed struct member in a stack variable" { test "packed struct with u0 field access" { if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO 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_c) return error.SkipZigTest; // TODO const S = packed struct { |
