diff options
| author | Taiki Endo <te316e89@gmail.com> | 2024-09-15 17:23:29 +0900 |
|---|---|---|
| committer | Amanieu d'Antras <amanieu@gmail.com> | 2024-09-18 05:30:10 -0400 |
| commit | 9e5b3f5c8cfe267573761b86d0f917a0c25503a1 (patch) | |
| tree | 8447a7309a55d7f0a3b6477be911f16faceb330e /library/stdarch/crates/std_detect | |
| parent | 720973b1b49772bed937975f56299c47494f19a6 (diff) | |
| download | rust-9e5b3f5c8cfe267573761b86d0f917a0c25503a1.tar.gz rust-9e5b3f5c8cfe267573761b86d0f917a0c25503a1.zip | |
std_detect: Fix link in mips.rs
Diffstat (limited to 'library/stdarch/crates/std_detect')
| -rw-r--r-- | library/stdarch/crates/std_detect/src/detect/os/linux/mips.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/stdarch/crates/std_detect/src/detect/os/linux/mips.rs b/library/stdarch/crates/std_detect/src/detect/os/linux/mips.rs index 9c030f41a00..f1bea382522 100644 --- a/library/stdarch/crates/std_detect/src/detect/os/linux/mips.rs +++ b/library/stdarch/crates/std_detect/src/detect/os/linux/mips.rs @@ -15,7 +15,7 @@ pub(crate) fn detect_features() -> cache::Initializer { // The values are part of the platform-specific [asm/hwcap.h][hwcap] // - // [hwcap]: https://github.com/torvalds/linux/blob/master/arch/arm64/include/uapi/asm/hwcap.h + // [hwcap]: https://github.com/torvalds/linux/blob/master/arch/mips/include/uapi/asm/hwcap.h if let Ok(auxv) = auxvec::auxv() { enable_feature(&mut value, Feature::msa, bit::test(auxv.hwcap, 1)); return value; |
