diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-01-02 16:11:17 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-02 16:11:17 -0500 |
| commit | 4c1007fc044689b8cbc20634d73debb43df8efe1 (patch) | |
| tree | 967e4bd30091e0d28816febe1c9fea1b761b9a94 /test/behavior/align.zig | |
| parent | 4172c2916684655a9742de99384be8110922ed07 (diff) | |
| parent | 23b1544f6c17dd1111ba8791189a7290581f945e (diff) | |
| download | zig-4c1007fc044689b8cbc20634d73debb43df8efe1.tar.gz zig-4c1007fc044689b8cbc20634d73debb43df8efe1.zip | |
Merge pull request #14002 from kcbanner/cbe_msvc_compatibility
CBE: MSVC-compatible code generation, and fixes to get behaviour tests passing and zig2.c building
Diffstat (limited to 'test/behavior/align.zig')
| -rw-r--r-- | test/behavior/align.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/behavior/align.zig b/test/behavior/align.zig index 780ee06875..8272a852df 100644 --- a/test/behavior/align.zig +++ b/test/behavior/align.zig @@ -540,6 +540,7 @@ test "align(N) on functions" { if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO + if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO this is not supported on MSVC // function alignment is a compile error on wasm32/wasm64 if (native_arch == .wasm32 or native_arch == .wasm64) return error.SkipZigTest; |
