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