aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/stack_iterator
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-07-07 11:38:15 -0700
committerAndrew Kelley <andrew@ziglang.org>2025-07-07 13:39:16 -0700
commitaa52bb83271edc626cd931cf9e8dfbcfc90d4cf2 (patch)
tree4ddab249d8aabafb74221d2d96812b554eedfd39 /test/standalone/stack_iterator
parenta59c35cbf86e0266d5074ce219feef8436e45268 (diff)
downloadzig-aa52bb83271edc626cd931cf9e8dfbcfc90d4cf2.tar.gz
zig-aa52bb83271edc626cd931cf9e8dfbcfc90d4cf2.zip
zig fmt
Diffstat (limited to 'test/standalone/stack_iterator')
-rw-r--r--test/standalone/stack_iterator/build.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/standalone/stack_iterator/build.zig b/test/standalone/stack_iterator/build.zig
index ee69f33d2e..a036a64ab7 100644
--- a/test/standalone/stack_iterator/build.zig
+++ b/test/standalone/stack_iterator/build.zig
@@ -29,7 +29,7 @@ pub fn build(b: *std.Build) void {
.root_source_file = b.path("unwind.zig"),
.target = target,
.optimize = optimize,
- .unwind_tables = if (target.result.os.tag.isDarwin()) .@"async" else null,
+ .unwind_tables = if (target.result.os.tag.isDarwin()) .async else null,
.omit_frame_pointer = false,
}),
});
@@ -54,7 +54,7 @@ pub fn build(b: *std.Build) void {
.root_source_file = b.path("unwind.zig"),
.target = target,
.optimize = optimize,
- .unwind_tables = .@"async",
+ .unwind_tables = .async,
.omit_frame_pointer = true,
}),
// self-hosted lacks omit_frame_pointer support
@@ -101,7 +101,7 @@ pub fn build(b: *std.Build) void {
.root_source_file = b.path("shared_lib_unwind.zig"),
.target = target,
.optimize = optimize,
- .unwind_tables = if (target.result.os.tag.isDarwin()) .@"async" else null,
+ .unwind_tables = if (target.result.os.tag.isDarwin()) .async else null,
.omit_frame_pointer = true,
}),
// zig objcopy doesn't support incremental binaries