Skip to content

Commit 223f107

Browse files
Rollup merge of #96415 - ehuss:git-io, r=bjorn3
Remove references to git.io The git.io service is shutting down soon (see https://github.blog/changelog/2022-04-25-git-io-deprecation/). This removes the references of those short links with the actual destination.
2 parents f908391 + 159b95d commit 223f107

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

compiler/rustc_target/src/asm/mips.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ impl MipsInlineAsmRegClass {
4343
}
4444
}
4545

46-
// The reserved registers are somewhat taken from <https://git.io/JUR1k#L150>.
46+
// The reserved registers are somewhat taken from
47+
// <https://github.com/llvm/llvm-project/blob/deb8f8bcf31540c657716ea5242183b0792702a1/llvm/lib/Target/Mips/MipsRegisterInfo.cpp#L150>.
4748
def_regs! {
4849
Mips MipsInlineAsmReg MipsInlineAsmRegClass {
4950
r2: reg = ["$2"],

library/std/src/sys/unix/process/process_common.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ cfg_if::cfg_if! {
3535
// Android with api less than 21 define sig* functions inline, so it is not
3636
// available for dynamic link. Implementing sigemptyset and sigaddset allow us
3737
// to support older Android version (independent of libc version).
38-
// The following implementations are based on https://git.io/vSkNf
38+
// The following implementations are based on
39+
// https://github.com/aosp-mirror/platform_bionic/blob/ad8dcd6023294b646e5a8288c0ed431b0845da49/libc/include/android/legacy_signal_inlines.h
3940
cfg_if::cfg_if! {
4041
if #[cfg(target_os = "android")] {
4142
pub unsafe fn sigemptyset(set: *mut libc::sigset_t) -> libc::c_int {

0 commit comments

Comments
 (0)