From 9019582fa7a75b18348e2a7b4e09f0be4e377323 Mon Sep 17 00:00:00 2001 From: bjorn3 Date: Sun, 18 Aug 2019 16:18:46 +0200 Subject: [PATCH] Rustfmt --- crates/core_arch/src/x86/fma.rs | 2 +- crates/core_arch/src/x86_64/bswap.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)]