File tree Expand file tree Collapse file tree 1 file changed +2
-11
lines changed
crates/core_simd/src/vendor Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -48,17 +48,6 @@ mod neon {
4848 from_transmute ! { unsafe u64x2 => poly64x2_t }
4949}
5050
51- #[ cfg( any(
52- all( target_feature = "v5te" , not( target_feature = "mclass" ) ) ,
53- all( target_feature = "mclass" , target_feature = "dsp" ) ,
54- ) ) ]
55- mod dsp {
56- use super :: * ;
57-
58- from_transmute ! { unsafe Simd <u16 , 2 > => uint16x2_t }
59- from_transmute ! { unsafe Simd <i16 , 2 > => int16x2_t }
60- }
61-
6251#[ cfg( any(
6352 all( target_feature = "v6" , not( target_feature = "mclass" ) ) ,
6453 all( target_feature = "mclass" , target_feature = "dsp" ) ,
@@ -68,6 +57,8 @@ mod simd32 {
6857
6958 from_transmute ! { unsafe Simd <u8 , 4 > => uint8x4_t }
7059 from_transmute ! { unsafe Simd <i8 , 4 > => int8x4_t }
60+ from_transmute ! { unsafe Simd <u16 , 2 > => uint16x2_t }
61+ from_transmute ! { unsafe Simd <i16 , 2 > => int16x2_t }
7162}
7263
7364#[ cfg( all(
You can’t perform that action at this time.
0 commit comments