From beb507a1edadb2829478d066b80ea62ed537157a Mon Sep 17 00:00:00 2001 From: Alex Rønne Petersen Date: Sun, 19 Oct 2025 22:40:15 +0200 Subject: std.builtin: add CallingConvention.x86_64_x32 This was forgotten during the refactoring of std.builtin.CallingConvention. It mirrors mips64_n32 for MIPS. --- src/Sema.zig | 1 + 1 file changed, 1 insertion(+) (limited to 'src/Sema.zig') diff --git a/src/Sema.zig b/src/Sema.zig index be4b777eeb..47b5339222 100644 --- a/src/Sema.zig +++ b/src/Sema.zig @@ -9035,6 +9035,7 @@ pub fn handleExternLibName( /// functions or there are no more other calling conventions that support variadic functions. const calling_conventions_supporting_var_args = [_]std.builtin.CallingConvention.Tag{ .x86_64_sysv, + .x86_64_x32, .x86_64_win, .x86_sysv, .x86_win, -- cgit v1.2.3