aboutsummaryrefslogtreecommitdiff
path: root/src/codegen/c.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-12-13 18:15:18 -0500
committerGitHub <noreply@github.com>2022-12-13 18:15:18 -0500
commit6378644d4ea561a79edf44056609681e6d1438d1 (patch)
tree84094f36ee3dd9e3befaf33a5a7da82fc5388da7 /src/codegen/c.zig
parent65270cdc3345e9840427179168a09ef6e4dd34b9 (diff)
parent51ed5416ab2969a366c8c6bdc487f357bad267c3 (diff)
downloadzig-6378644d4ea561a79edf44056609681e6d1438d1.tar.gz
zig-6378644d4ea561a79edf44056609681e6d1438d1.zip
Merge pull request #13907 from Vexu/call-merge
Remove `stack` option from `@call`
Diffstat (limited to 'src/codegen/c.zig')
-rw-r--r--src/codegen/c.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/c.zig b/src/codegen/c.zig
index b78c9e9b1a..55b9cd4b77 100644
--- a/src/codegen/c.zig
+++ b/src/codegen/c.zig
@@ -3874,7 +3874,7 @@ fn airSlice(f: *Function, inst: Air.Inst.Index) !CValue {
fn airCall(
f: *Function,
inst: Air.Inst.Index,
- modifier: std.builtin.CallOptions.Modifier,
+ modifier: std.builtin.CallModifier,
) !CValue {
// Not even allowed to call panic in a naked function.
if (f.object.dg.decl.ty.fnCallingConvention() == .Naked) return .none;