about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbeetrees <b@beetr.ee>2025-03-23 22:50:28 +0000
committerbeetrees <b@beetr.ee>2025-03-26 02:05:41 +0000
commit049bb266873ff98ce8219c7d2d5d56c7cbe3eaf3 (patch)
tree426649628bf6f0c28d8eeb1177c3a1e6c5117358
parentaa8f0fd7163a2f23aa958faed30c9c2b77b934a5 (diff)
downloadrust-049bb266873ff98ce8219c7d2d5d56c7cbe3eaf3.tar.gz
rust-049bb266873ff98ce8219c7d2d5d56c7cbe3eaf3.zip
Add target-specific NaN payloads for the missing tier 2 targets
-rw-r--r--library/core/src/primitive_docs.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/library/core/src/primitive_docs.rs b/library/core/src/primitive_docs.rs
index 89c856fe107..6c59e71194b 100644
--- a/library/core/src/primitive_docs.rs
+++ b/library/core/src/primitive_docs.rs
@@ -1309,10 +1309,12 @@ mod prim_f16 {}
 // FIXME: Is there a better place to put this?
 ///
 /// | `target_arch` | Extra payloads possible on this platform |
-/// |---------------|---------|
-/// | `x86`, `x86_64`, `arm`, `aarch64`, `riscv32`, `riscv64` | None |
+/// |---------------|------------------------------------------|
+// Sorted alphabetically
+/// | `aarch64`, `arm`, `arm64ec`, `loongarch64`, `powerpc` (except when `target_abi = "spe"`), `powerpc64`, `riscv32`, `riscv64`, `s390x`, `x86`, `x86_64` | None |
+/// | `nvptx64` | All payloads |
 /// | `sparc`, `sparc64` | The all-one payload |
-/// | `wasm32`, `wasm64` | If all input NaNs are quiet with all-zero payload: None.<br> Otherwise: all possible payloads. |
+/// | `wasm32`, `wasm64` | If all input NaNs are quiet with all-zero payload: None.<br> Otherwise: all payloads. |
 ///
 /// For targets not in this table, all payloads are possible.