Skip to content

Commit

Permalink
std_detect: Fix link in mips.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e authored and Amanieu committed Sep 18, 2024
1 parent 17d2b18 commit 0c6200b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/std_detect/src/detect/os/linux/mips.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0c6200b

Please sign in to comment.