authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-10-28 22:47:25+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-11-02 10:30:48+01:00
logf7da31b1f43f5f707c9de841577e491ef115bb94
tree1ed8c0a5d3eefd46baf7b9daab9dfafd5c5368c8
parente27b4647d86e3bdaf2c4fd95db2e7d359afd7fc4
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.builtin: Some minor fixes to CallingConvention doc comments.


1 files changed, 4 insertions(+), 4 deletions(-)

lib/std/builtin.zig+4-4
...@@ -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,
295295
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,
300300
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,
304304
...@@ -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,
331331
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,
334334
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,
398398
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,
402402