We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b168a4c commit 88bef95Copy full SHA for 88bef95
crates/core_arch/src/x86/sse.rs
@@ -1080,10 +1080,7 @@ pub unsafe fn _mm_movelh_ps(a: __m128, b: __m128) -> __m128 {
1080
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_movemask_ps)
1081
#[inline]
1082
#[target_feature(enable = "sse")]
1083
-// FIXME: LLVM9 trunk has the following bug:
1084
-// https://github.com/rust-lang/stdarch/issues/794
1085
-// so we only temporarily test this on i686 and x86_64 but not on i586:
1086
-#[cfg_attr(all(test, target_feature = "sse2"), assert_instr(movmskps))]
+#[cfg_attr(test, assert_instr(movmskps))]
1087
#[stable(feature = "simd_x86", since = "1.27.0")]
1088
pub unsafe fn _mm_movemask_ps(a: __m128) -> i32 {
1089
movmskps(a)
0 commit comments