| ... | @@ -293,12 +293,12 @@ pub const CallingConvention = union(enum(u8)) { | ... | @@ -293,12 +293,12 @@ pub const CallingConvention = union(enum(u8)) { |
| 293 | arm_aapcs16_vfp: CommonOptions, | 293 | arm_aapcs16_vfp: CommonOptions, |
| 294 | arm_interrupt: ArmInterruptOptions, | 294 | arm_interrupt: ArmInterruptOptions, |
| 295 | | 295 | |
| 296 | // Calling conventions for the `mips64` architecture. | 296 | // Calling conventions for the `mips64` and `mips64el` architectures. |
| 297 | mips64_n64: CommonOptions, | 297 | mips64_n64: CommonOptions, |
| 298 | mips64_n32: CommonOptions, | 298 | mips64_n32: CommonOptions, |
| 299 | mips64_interrupt: MipsInterruptOptions, | 299 | mips64_interrupt: MipsInterruptOptions, |
| 300 | | 300 | |
| 301 | // Calling conventions for the `mips` architecture. | 301 | // Calling conventions for the `mips` and `mipsel` architectures. |
| 302 | mips_o32: CommonOptions, | 302 | mips_o32: CommonOptions, |
| 303 | mips_interrupt: MipsInterruptOptions, | 303 | mips_interrupt: MipsInterruptOptions, |
| 304 | | 304 | |
| ... | @@ -329,7 +329,7 @@ pub const CallingConvention = union(enum(u8)) { | ... | @@ -329,7 +329,7 @@ pub const CallingConvention = union(enum(u8)) { |
| 329 | powerpc_aix: CommonOptions, | 329 | powerpc_aix: CommonOptions, |
| 330 | powerpc_aix_altivec: CommonOptions, | 330 | powerpc_aix_altivec: CommonOptions, |
| 331 | | 331 | |
| 332 | /// The standard `wasm32`/`wasm64` calling convention, as specified in the WebAssembly Tool Conventions. | 332 | /// The standard `wasm32` and `wasm64` calling convention, as specified in the WebAssembly Tool Conventions. |
| 333 | wasm_watc: CommonOptions, | 333 | wasm_watc: CommonOptions, |
| 334 | | 334 | |
| 335 | /// The standard `arc` calling convention. | 335 | /// The standard `arc` calling convention. |
| ... | @@ -396,7 +396,7 @@ pub const CallingConvention = union(enum(u8)) { | ... | @@ -396,7 +396,7 @@ pub const CallingConvention = union(enum(u8)) { |
| 396 | amdgcn_kernel, | 396 | amdgcn_kernel, |
| 397 | amdgcn_cs: CommonOptions, | 397 | amdgcn_cs: CommonOptions, |
| 398 | | 398 | |
| 399 | // Calling conventions for the `nvptx` architecture. | 399 | // Calling conventions for the `nvptx` and `nvptx64` architectures. |
| 400 | nvptx_device, | 400 | nvptx_device, |
| 401 | nvptx_kernel, | 401 | nvptx_kernel, |
| 402 | | 402 | |