about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-10-03 16:24:16 +0200
committerGitHub <noreply@github.com>2023-10-03 16:24:16 +0200
commita4ba529474ae7a6f2649ca57e06d25a5a496301e (patch)
tree1d0b94c5298f5a0fe42d24bc6f0150b692b56906 /library/std/src
parent8efbc2cbae8cdf34023c89633200c71759562aa4 (diff)
parent6ef3fd713862c0deecc4a62390be6cf26866673f (diff)
downloadrust-a4ba529474ae7a6f2649ca57e06d25a5a496301e.tar.gz
rust-a4ba529474ae7a6f2649ca57e06d25a5a496301e.zip
Rollup merge of #116282 - rustaceanclub:master, r=davidtwco
Fix broken links

The previous address is no longer available, replace it with the latest available one.
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/sys/personality/gcc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/personality/gcc.rs b/library/std/src/sys/personality/gcc.rs
index e477a0cd7ab..559d2c7db47 100644
--- a/library/std/src/sys/personality/gcc.rs
+++ b/library/std/src/sys/personality/gcc.rs
@@ -95,7 +95,7 @@ const UNWIND_DATA_REG: (i32, i32) = (4, 5); // a0, a1
 cfg_if::cfg_if! {
     if #[cfg(all(target_arch = "arm", not(target_os = "ios"), not(target_os = "tvos"), not(target_os = "watchos"), not(target_os = "netbsd")))] {
         // ARM EHABI personality routine.
-        // https://infocenter.arm.com/help/topic/com.arm.doc.ihi0038b/IHI0038B_ehabi.pdf
+        // https://web.archive.org/web/20190728160938/https://infocenter.arm.com/help/topic/com.arm.doc.ihi0038b/IHI0038B_ehabi.pdf
         //
         // iOS uses the default routine instead since it uses SjLj unwinding.
         #[lang = "eh_personality"]