File tree 1 file changed +2
-11
lines changed
crates/core_simd/src/vendor
1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -48,17 +48,6 @@ mod neon {
48
48
from_transmute ! { unsafe u64x2 => poly64x2_t }
49
49
}
50
50
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
-
62
51
#[ cfg( any(
63
52
all( target_feature = "v6" , not( target_feature = "mclass" ) ) ,
64
53
all( target_feature = "mclass" , target_feature = "dsp" ) ,
@@ -68,6 +57,8 @@ mod simd32 {
68
57
69
58
from_transmute ! { unsafe Simd <u8 , 4 > => uint8x4_t }
70
59
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 }
71
62
}
72
63
73
64
#[ cfg( all(
You can’t perform that action at this time.
0 commit comments