We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eb3d41 commit 9019582Copy full SHA for 9019582
crates/core_arch/src/x86/fma.rs
@@ -18,8 +18,8 @@
18
//! [amd64_ref]: http://support.amd.com/TechDocs/24594.pdf
19
//! [wiki_fma]: https://en.wikipedia.org/wiki/Fused_multiply-accumulate
20
21
-use crate::core_arch::x86::*;
22
use crate::core_arch::simd_llvm::simd_fma;
+use crate::core_arch::x86::*;
23
24
#[cfg(test)]
25
use stdarch_test::assert_instr;
crates/core_arch/src/x86_64/bswap.rs
@@ -12,7 +12,7 @@ use stdarch_test::assert_instr;
12
#[cfg_attr(test, assert_instr(bswap))]
13
#[stable(feature = "simd_x86", since = "1.27.0")]
14
pub unsafe fn _bswap64(x: i64) -> i64 {
15
- x.swap_bytes()
+ x.swap_bytes()
16
}
17
0 commit comments