about summary refs log tree commit diff
path: root/library/portable-simd
diff options
context:
space:
mode:
authordaxpedda <daxpedda@gmail.com>2024-12-15 09:59:15 +0100
committerdaxpedda <daxpedda@gmail.com>2024-12-24 19:00:57 +0100
commit374800b88d2802ed29bf5116b437d1f6f1a259d8 (patch)
tree5b39f8f15496d0eb00214ddf157d91dfe1237888 /library/portable-simd
parent54dcff104b0acf01716a94429717d364fe43f90d (diff)
downloadrust-374800b88d2802ed29bf5116b437d1f6f1a259d8.tar.gz
rust-374800b88d2802ed29bf5116b437d1f6f1a259d8.zip
Bump `stdarch`
Diffstat (limited to 'library/portable-simd')
-rw-r--r--library/portable-simd/crates/core_simd/src/vendor/arm.rs13
1 files changed, 2 insertions, 11 deletions
diff --git a/library/portable-simd/crates/core_simd/src/vendor/arm.rs b/library/portable-simd/crates/core_simd/src/vendor/arm.rs
index f8878d11f09..3dc54481b6f 100644
--- a/library/portable-simd/crates/core_simd/src/vendor/arm.rs
+++ b/library/portable-simd/crates/core_simd/src/vendor/arm.rs
@@ -49,17 +49,6 @@ mod neon {
 }
 
 #[cfg(any(
-    all(target_feature = "v5te", not(target_feature = "mclass")),
-    all(target_feature = "mclass", target_feature = "dsp"),
-))]
-mod dsp {
-    use super::*;
-
-    from_transmute! { unsafe Simd<u16, 2> => uint16x2_t }
-    from_transmute! { unsafe Simd<i16, 2> => int16x2_t }
-}
-
-#[cfg(any(
     all(target_feature = "v6", not(target_feature = "mclass")),
     all(target_feature = "mclass", target_feature = "dsp"),
 ))]
@@ -68,6 +57,8 @@ mod simd32 {
 
     from_transmute! { unsafe Simd<u8, 4> => uint8x4_t }
     from_transmute! { unsafe Simd<i8, 4> => int8x4_t }
+    from_transmute! { unsafe Simd<u16, 2> => uint16x2_t }
+    from_transmute! { unsafe Simd<i16, 2> => int16x2_t }
 }
 
 #[cfg(all(