File tree Expand file tree Collapse file tree 1 file changed +2
-15
lines changed
collector/benchmarks/packed-simd/src/codegen/reductions/mask/x86 Expand file tree Collapse file tree 1 file changed +2
-15
lines changed Original file line number Diff line number Diff line change @@ -7,27 +7,14 @@ macro_rules! x86_m8x8_mmx_impl {
77 #[ inline]
88 #[ target_feature( enable = "mmx" ) ]
99 unsafe fn all( self ) -> bool {
10- #[ cfg( target_arch = "x86" ) ]
11- use crate :: arch:: x86:: _mm_movemask_pi8;
12- #[ cfg( target_arch = "x86_64" ) ]
13- use crate :: arch:: x86_64:: _mm_movemask_pi8;
14- // _mm_movemask_pi8(a) creates an 8bit mask containing the most
15- // significant bit of each byte of `a`. If all bits are set,
16- // then all 8 lanes of the mask are true.
17- _mm_movemask_pi8( crate :: mem:: transmute( self ) )
18- == u8 :: max_value( ) as i32
10+ unimplemented!( )
1911 }
2012 }
2113 impl Any for $id {
2214 #[ inline]
2315 #[ target_feature( enable = "mmx" ) ]
2416 unsafe fn any( self ) -> bool {
25- #[ cfg( target_arch = "x86" ) ]
26- use crate :: arch:: x86:: _mm_movemask_pi8;
27- #[ cfg( target_arch = "x86_64" ) ]
28- use crate :: arch:: x86_64:: _mm_movemask_pi8;
29-
30- _mm_movemask_pi8( crate :: mem:: transmute( self ) ) != 0
17+ unimplemented!( )
3118 }
3219 }
3320 } ;
You can’t perform that action at this time.
0 commit comments