Skip to content

Commit 9019582

Browse files
committed
Rustfmt
1 parent 5eb3d41 commit 9019582

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/core_arch/src/x86/fma.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
//! [amd64_ref]: http://support.amd.com/TechDocs/24594.pdf
1919
//! [wiki_fma]: https://en.wikipedia.org/wiki/Fused_multiply-accumulate
2020
21-
use crate::core_arch::x86::*;
2221
use crate::core_arch::simd_llvm::simd_fma;
22+
use crate::core_arch::x86::*;
2323

2424
#[cfg(test)]
2525
use stdarch_test::assert_instr;

crates/core_arch/src/x86_64/bswap.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use stdarch_test::assert_instr;
1212
#[cfg_attr(test, assert_instr(bswap))]
1313
#[stable(feature = "simd_x86", since = "1.27.0")]
1414
pub unsafe fn _bswap64(x: i64) -> i64 {
15-
x.swap_bytes()
15+
x.swap_bytes()
1616
}
1717

1818
#[cfg(test)]

0 commit comments

Comments
 (0)