diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2024-11-03 14:27:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-03 14:27:09 +0100 |
| commit | 3054486d1dedd49553680da2c074d1ab413797fd (patch) | |
| tree | 79c3d4e9b417d14ddb11a47e26da083d5e06e8aa /lib/std/builtin.zig | |
| parent | 2f003f39b28176f08de51271eb66b5f3a54c7aae (diff) | |
| parent | e4e3d7ab4140ae6f078d3ffd72fce4c0a5e6e59f (diff) | |
| download | zig-3054486d1dedd49553680da2c074d1ab413797fd.tar.gz zig-3054486d1dedd49553680da2c074d1ab413797fd.zip | |
Merge pull request #21843 from alexrp/callconv-followup
Some follow-up work for #21697
Diffstat (limited to 'lib/std/builtin.zig')
| -rw-r--r-- | lib/std/builtin.zig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/std/builtin.zig b/lib/std/builtin.zig index d7f8876b24..02948d6602 100644 --- a/lib/std/builtin.zig +++ b/lib/std/builtin.zig @@ -293,12 +293,12 @@ pub const CallingConvention = union(enum(u8)) { arm_aapcs16_vfp: CommonOptions, arm_interrupt: ArmInterruptOptions, - // Calling conventions for the `mips64` architecture. + // Calling conventions for the `mips64` and `mips64el` architectures. mips64_n64: CommonOptions, mips64_n32: CommonOptions, mips64_interrupt: MipsInterruptOptions, - // Calling conventions for the `mips` architecture. + // Calling conventions for the `mips` and `mipsel` architectures. mips_o32: CommonOptions, mips_interrupt: MipsInterruptOptions, @@ -329,7 +329,7 @@ pub const CallingConvention = union(enum(u8)) { powerpc_aix: CommonOptions, powerpc_aix_altivec: CommonOptions, - /// The standard `wasm32`/`wasm64` calling convention, as specified in the WebAssembly Tool Conventions. + /// The standard `wasm32` and `wasm64` calling convention, as specified in the WebAssembly Tool Conventions. wasm_watc: CommonOptions, /// The standard `arc` calling convention. @@ -396,7 +396,7 @@ pub const CallingConvention = union(enum(u8)) { amdgcn_kernel, amdgcn_cs: CommonOptions, - // Calling conventions for the `nvptx` architecture. + // Calling conventions for the `nvptx` and `nvptx64` architectures. nvptx_device, nvptx_kernel, |
