File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
library/stdarch/crates/core_arch/src/x86 Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -1080,10 +1080,7 @@ pub unsafe fn _mm_movelh_ps(a: __m128, b: __m128) -> __m128 {
1080
1080
/// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_movemask_ps)
1081
1081
#[ inline]
1082
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) ) ]
1083
+ #[ cfg_attr( test, assert_instr( movmskps) ) ]
1087
1084
#[ stable( feature = "simd_x86" , since = "1.27.0" ) ]
1088
1085
pub unsafe fn _mm_movemask_ps ( a : __m128 ) -> i32 {
1089
1086
movmskps ( a)
You can’t perform that action at this time.
0 commit comments