| author | |
| committer | |
| log | 76304a36afb6d2cc77902a0e60906382b53d7baa |
| tree | 4c34a7086d5eefcff699f4e7d618da43e54672f1 |
| parent | 13068da43e8fbd0ae5d03aff27fb4e8802e1218c |
1 files changed, 17 insertions(+), 1 deletions(-)
lib/std/builtin.zig+17-1| ... | ... | @@ -150,7 +150,23 @@ pub const Mode = enum { |
| 150 | 150 | |
| 151 | 151 | /// This data structure is used by the Zig language code generation and |
| 152 | 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 | 171 | /// This data structure is used by the Zig language code generation and |
| 156 | 172 | /// therefore must be kept in sync with the compiler implementation. |