diff --git a/crates/core_arch/src/x86/fma.rs b/crates/core_arch/src/x86/fma.rs index 79536b3ce3..f3dda6d527 100644 --- a/crates/core_arch/src/x86/fma.rs +++ b/crates/core_arch/src/x86/fma.rs @@ -18,8 +18,8 @@ //! [amd64_ref]: http://support.amd.com/TechDocs/24594.pdf //! [wiki_fma]: https://en.wikipedia.org/wiki/Fused_multiply-accumulate -use crate::core_arch::x86::*; use crate::core_arch::simd_llvm::simd_fma; +use crate::core_arch::x86::*; #[cfg(test)] use stdarch_test::assert_instr; diff --git a/crates/core_arch/src/x86_64/bswap.rs b/crates/core_arch/src/x86_64/bswap.rs index 81ecbc2290..90a209ce30 100644 --- a/crates/core_arch/src/x86_64/bswap.rs +++ b/crates/core_arch/src/x86_64/bswap.rs @@ -12,7 +12,7 @@ use stdarch_test::assert_instr; #[cfg_attr(test, assert_instr(bswap))] #[stable(feature = "simd_x86", since = "1.27.0")] pub unsafe fn _bswap64(x: i64) -> i64 { - x.swap_bytes() + x.swap_bytes() } #[cfg(test)]