Skip to content

Commit

Permalink
Rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn3 committed Aug 18, 2019
1 parent 5eb3d41 commit 9019582
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/core_arch/src/x86/fma.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion crates/core_arch/src/x86_64/bswap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit 9019582

Please sign in to comment.