about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-03-07 00:57:42 +0100
committerGitHub <noreply@github.com>2024-03-07 00:57:42 +0100
commit814077e0731a3544cffd14a77e2354dddfc93bef (patch)
treee81641761254ddcd77d9a70a2dc79722a5354766
parent7220e52f94cf6e92c6e41ecb7a41d046a56cd62a (diff)
parent6dc356bbc47054d932be7b293dbfedba234c650a (diff)
downloadrust-814077e0731a3544cffd14a77e2354dddfc93bef.tar.gz
rust-814077e0731a3544cffd14a77e2354dddfc93bef.zip
Rollup merge of #122094 - slanterns:arm-stack-probe-footnote, r=workingjubilee
Remove outdated footnote "missing-stack-probe" in platform-support

... after https://github.com/rust-lang/rust/pull/120055 and https://github.com/rust-lang/rust/pull/118491.

cc https://github.com/rust-lang/rust/issues/77071#issuecomment-1981172733.
-rw-r--r--src/doc/rustc/src/platform-support.md6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/doc/rustc/src/platform-support.md b/src/doc/rustc/src/platform-support.md
index 4c4bbd29ac6..76fcbaf2c05 100644
--- a/src/doc/rustc/src/platform-support.md
+++ b/src/doc/rustc/src/platform-support.md
@@ -32,7 +32,7 @@ All tier 1 targets with host tools support the full standard library.
 
 target | notes
 -------|-------
-`aarch64-unknown-linux-gnu` | ARM64 Linux (kernel 4.1, glibc 2.17+) [^missing-stack-probes]
+`aarch64-unknown-linux-gnu` | ARM64 Linux (kernel 4.1, glibc 2.17+)
 `i686-pc-windows-gnu` | 32-bit MinGW (Windows 7+) [^windows-support] [^x86_32-floats-return-ABI]
 `i686-pc-windows-msvc` | 32-bit MSVC (Windows 7+) [^windows-support] [^x86_32-floats-return-ABI]
 `i686-unknown-linux-gnu` | 32-bit Linux (kernel 3.2+, glibc 2.17+) [^x86_32-floats-return-ABI]
@@ -41,10 +41,6 @@ target | notes
 `x86_64-pc-windows-msvc` | 64-bit MSVC (Windows 7+) [^windows-support]
 `x86_64-unknown-linux-gnu` | 64-bit Linux (kernel 3.2+, glibc 2.17+)
 
-[^missing-stack-probes]: Stack probes support is missing on
-  `aarch64-unknown-linux-gnu`, but it's planned to be implemented in the near
-  future. The implementation is tracked on [issue #77071][77071].
-
 [^windows-support]: Only Windows 10 currently undergoes automated testing. Earlier versions of Windows rely on testing and support from the community.
 
 [^x86_32-floats-return-ABI]: Due to limitations of the C ABI, floating-point support on `i686` targets is non-compliant: floating-point return values are passed via an x87 register, so NaN payload bits can be lost. See [issue #114479][x86-32-float-issue].