diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2022-02-28 19:54:13 +0100 |
|---|---|---|
| committer | Jakub Konka <kubkon@jakubkonka.com> | 2022-02-28 23:20:05 +0100 |
| commit | cfbc3537ef0b3a73d5b8fdd358cf3bb831935861 (patch) | |
| tree | 96c6e1654af9790a679722b4af7cbdcc93eff10c /test/behavior/alignof.zig | |
| parent | 66d28d0f20bda4c8653816e9f9179b6cc047506e (diff) | |
| download | zig-cfbc3537ef0b3a73d5b8fdd358cf3bb831935861.tar.gz zig-cfbc3537ef0b3a73d5b8fdd358cf3bb831935861.zip | |
x64: pass more behavior tests
Diffstat (limited to 'test/behavior/alignof.zig')
| -rw-r--r-- | test/behavior/alignof.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/alignof.zig b/test/behavior/alignof.zig index 5a49146694..b065e4b87f 100644 --- a/test/behavior/alignof.zig +++ b/test/behavior/alignof.zig @@ -14,7 +14,6 @@ test "@alignOf(T) before referencing T" { if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; comptime try expect(@alignOf(Foo) != maxInt(usize)); if (native_arch == .x86_64) { comptime try expect(@alignOf(Foo) == 4); @@ -23,7 +22,6 @@ test "@alignOf(T) before referencing T" { test "comparison of @alignOf(T) against zero" { if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; { const T = struct { x: u32 }; try expect(!(@alignOf(T) == 0)); |
