| ... | @@ -150,7 +150,23 @@ pub const Mode = enum { | ... | @@ -150,7 +150,23 @@ pub const Mode = enum { |
| 150 | | 150 | |
| 151 | /// This data structure is used by the Zig language code generation and | 151 | /// This data structure is used by the Zig language code generation and |
| 152 | /// therefore must be kept in sync with the compiler implementation. | 152 | /// therefore must be kept in sync with the compiler implementation. |
| 153 | pub const CallingConvention = enum { Unspecified, C, Naked, Async, Inline, Interrupt, Signal, Stdcall, Fastcall, Vectorcall, Thiscall, APCS, AAPCS, AAPCSVFP, SysV }; | 153 | pub 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 | }; |
| 154 | | 170 | |
| 155 | /// This data structure is used by the Zig language code generation and | 171 | /// This data structure is used by the Zig language code generation and |
| 156 | /// therefore must be kept in sync with the compiler implementation. | 172 | /// therefore must be kept in sync with the compiler implementation. |