aboutsummaryrefslogtreecommitdiff
path: root/src/Zcu.zig
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 /src/Zcu.zig
parenta59c35cbf86e0266d5074ce219feef8436e45268 (diff)
downloadzig-aa52bb83271edc626cd931cf9e8dfbcfc90d4cf2.tar.gz
zig-aa52bb83271edc626cd931cf9e8dfbcfc90d4cf2.zip
zig fmt
Diffstat (limited to 'src/Zcu.zig')
-rw-r--r--src/Zcu.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Zcu.zig b/src/Zcu.zig
index 24e7213753..5ba12056fd 100644
--- a/src/Zcu.zig
+++ b/src/Zcu.zig
@@ -4453,7 +4453,7 @@ pub fn callconvSupported(zcu: *Zcu, cc: std.builtin.CallingConvention) union(enu
const backend = target_util.zigBackend(target, zcu.comp.config.use_llvm);
switch (cc) {
.auto, .@"inline" => return .ok,
- .@"async" => return .{ .bad_backend = backend }, // nothing supports async currently
+ .async => return .{ .bad_backend = backend }, // nothing supports async currently
.naked => {}, // depends only on backend
else => for (cc.archs()) |allowed_arch| {
if (allowed_arch == target.cpu.arch) break;