This commit is contained in:
bjorn3 2019-08-18 16:18:46 +02:00 committed by gnzlbg
parent 0aa5e29724
commit ea51d868ec
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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)]