about summary refs log tree commit diff
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
commit8423171f11c1dc494779bea6f93d63acb876d402 (patch)
tree552bca0718a0590cf0ac8324bf35d472ef0361d3
parent6c1656df84004f77d40dfab09f9a3f9f6c20efe7 (diff)
downloadrust-8423171f11c1dc494779bea6f93d63acb876d402.tar.gz
rust-8423171f11c1dc494779bea6f93d63acb876d402.zip
Bump `stdarch`
-rw-r--r--crates/core_simd/src/vendor/arm.rs13
1 files changed, 2 insertions, 11 deletions
diff --git a/crates/core_simd/src/vendor/arm.rs b/crates/core_simd/src/vendor/arm.rs
index f8878d11f09..3dc54481b6f 100644
--- a/crates/core_simd/src/vendor/arm.rs
+++ b/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(