File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -671,7 +671,7 @@ impl i32x4 {
671
671
#[ must_use]
672
672
pub fn move_mask ( self ) -> i32 {
673
673
pick ! {
674
- if #[ cfg( target_feature="sse " ) ] {
674
+ if #[ cfg( target_feature="sse2 " ) ] {
675
675
// use f32 move_mask since it is the same size as i32
676
676
move_mask_m128( cast( self . sse) )
677
677
} else if #[ cfg( target_feature="simd128" ) ] {
@@ -702,7 +702,7 @@ impl i32x4 {
702
702
#[ must_use]
703
703
pub fn any ( self ) -> bool {
704
704
pick ! {
705
- if #[ cfg( target_feature="sse " ) ] {
705
+ if #[ cfg( target_feature="sse2 " ) ] {
706
706
// use f32 move_mask since it is the same size as i32
707
707
move_mask_m128( cast( self . sse) ) != 0
708
708
} else if #[ cfg( target_feature="simd128" ) ] {
@@ -723,7 +723,7 @@ impl i32x4 {
723
723
#[ must_use]
724
724
pub fn all ( self ) -> bool {
725
725
pick ! {
726
- if #[ cfg( target_feature="sse " ) ] {
726
+ if #[ cfg( target_feature="sse2 " ) ] {
727
727
// use f32 move_mask since it is the same size as i32
728
728
move_mask_m128( cast( self . sse) ) == 0b1111
729
729
} else if #[ cfg( target_feature="simd128" ) ] {
You can’t perform that action at this time.
0 commit comments