authorgravatar for kenta@lithdew.netlithdew <kenta@lithdew.net> 2021-04-30 21:10:36+09:00
committergravatar for kenta@lithdew.netlithdew <kenta@lithdew.net> 2021-05-03 14:49:10+09:00
log76304a36afb6d2cc77902a0e60906382b53d7baa
tree4c34a7086d5eefcff699f4e7d618da43e54672f1
parent13068da43e8fbd0ae5d03aff27fb4e8802e1218c

std/builtin: add missing comma to CallingConvention


1 files changed, 17 insertions(+), 1 deletions(-)

lib/std/builtin.zig+17-1
......@@ -150,7 +150,23 @@ pub const Mode = enum {
150150
151151/// This data structure is used by the Zig language code generation and
152152/// therefore must be kept in sync with the compiler implementation.
153pub const CallingConvention = enum { Unspecified, C, Naked, Async, Inline, Interrupt, Signal, Stdcall, Fastcall, Vectorcall, Thiscall, APCS, AAPCS, AAPCSVFP, SysV };
153pub const CallingConvention = enum {
154 Unspecified,
155 C,
156 Naked,
157 Async,
158 Inline,
159 Interrupt,
160 Signal,
161 Stdcall,
162 Fastcall,
163 Vectorcall,
164 Thiscall,
165 APCS,
166 AAPCS,
167 AAPCSVFP,
168 SysV,
169};
154170
155171/// This data structure is used by the Zig language code generation and
156172/// therefore must be kept in sync with the compiler implementation.