diff options
| author | Meghan Denny <hello@nektro.net> | 2022-07-24 19:05:20 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-08-07 16:07:08 -0700 |
| commit | 0879cbeed262415645fe388e1991c7df866f7064 (patch) | |
| tree | d4cf3f46f70bca8fc0f781f72af07490fbb6fe3f /test/behavior/struct.zig | |
| parent | ae16c1d0835b517cb858cb9615888cdab1e351c5 (diff) | |
| download | zig-0879cbeed262415645fe388e1991c7df866f7064.tar.gz zig-0879cbeed262415645fe388e1991c7df866f7064.zip | |
remove 'builtin.stage2_arch', Sema is smart enough now
Diffstat (limited to 'test/behavior/struct.zig')
| -rw-r--r-- | test/behavior/struct.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig index 377cbb56f4..eb29c9038d 100644 --- a/test/behavior/struct.zig +++ b/test/behavior/struct.zig @@ -963,7 +963,7 @@ test "tuple assigned to variable" { test "comptime struct field" { if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO - if (builtin.stage2_arch == .arm) return error.SkipZigTest; // TODO + if (builtin.cpu.arch == .arm) return error.SkipZigTest; // TODO const T = struct { a: i32, |
