fix incorrect import on aarch64-unknown-openbsd · rust-lang/rust@ac3faf0 (original) (raw)
File tree
1 file changed
lines changed
- library/std_detect/src/detect/os/openbsd
1 file changed
lines changed
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -31,7 +31,7 @@ pub(crate) fn detect_features() -> cache::Initializer { | ||
| 31 | 31 | // the feature is available. |
| 32 | 32 | let aa64pfr0 = sysctl64(&[libc::CTL_MACHDEP, CPU_ID_AA64PFR0]); |
| 33 | 33 | |
| 34 | -super::aarch64::parse_system_registers(aa64isar0, aa64isar1, aa64mmfr2, aa64pfr0) | |
| 34 | +crate::detect::aarch64::parse_system_registers(aa64isar0, aa64isar1, aa64mmfr2, aa64pfr0) | |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | #[inline] |