Skip to content

Commit 6ef3fd7

Browse files
committed
Fix broken links
Signed-off-by: cui fliter <imcusg@gmail.com>
1 parent a6dfd89 commit 6ef3fd7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

compiler/rustc_target/src/spec/thumbv7neon_linux_androideabi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use crate::spec::{Cc, LinkerFlavor, Lld, Target, TargetOptions};
33
// This target if is for the Android v7a ABI in thumb mode with
44
// NEON unconditionally enabled and, therefore, with 32 FPU registers
55
// enabled as well. See section A2.6.2 on page A2-56 in
6-
// https://static.docs.arm.com/ddi0406/cd/DDI0406C_d_armv7ar_arm.pdf
6+
// https://web.archive.org/web/20210307234416/https://static.docs.arm.com/ddi0406/cd/DDI0406C_d_armv7ar_arm.pdf
77

88
// See https://developer.android.com/ndk/guides/abis.html#v7a
99
// for target ABI requirements.

compiler/rustc_target/src/spec/thumbv7neon_unknown_linux_gnueabihf.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use crate::spec::{Target, TargetOptions};
44
// (for consistency with Android and Debian-based distributions)
55
// and with NEON unconditionally enabled and, therefore, with 32 FPU
66
// registers enabled as well. See section A2.6.2 on page A2-56 in
7-
// https://static.docs.arm.com/ddi0406/cd/DDI0406C_d_armv7ar_arm.pdf
7+
// https://web.archive.org/web/20210307234416/https://static.docs.arm.com/ddi0406/cd/DDI0406C_d_armv7ar_arm.pdf
88

99
pub fn target() -> Target {
1010
Target {

compiler/rustc_target/src/spec/thumbv7neon_unknown_linux_musleabihf.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use crate::spec::{Target, TargetOptions};
44
// (for consistency with Android and Debian-based distributions)
55
// and with NEON unconditionally enabled and, therefore, with 32 FPU
66
// registers enabled as well. See section A2.6.2 on page A2-56 in
7-
// https://static.docs.arm.com/ddi0406/cd/DDI0406C_d_armv7ar_arm.pdf
7+
// https://web.archive.org/web/20210307234416/https://static.docs.arm.com/ddi0406/cd/DDI0406C_d_armv7ar_arm.pdf
88

99
pub fn target() -> Target {
1010
Target {

library/std/src/sys/personality/gcc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ const UNWIND_DATA_REG: (i32, i32) = (4, 5); // a0, a1
9595
cfg_if::cfg_if! {
9696
if #[cfg(all(target_arch = "arm", not(target_os = "ios"), not(target_os = "tvos"), not(target_os = "watchos"), not(target_os = "netbsd")))] {
9797
// ARM EHABI personality routine.
98-
// https://infocenter.arm.com/help/topic/com.arm.doc.ihi0038b/IHI0038B_ehabi.pdf
98+
// https://web.archive.org/web/20190728160938/https://infocenter.arm.com/help/topic/com.arm.doc.ihi0038b/IHI0038B_ehabi.pdf
9999
//
100100
// iOS uses the default routine instead since it uses SjLj unwinding.
101101
#[lang = "eh_personality"]

0 commit comments

Comments
 (0)