Skip to content

Commit 70003c5

Browse files
committed
Auto merge of rust-lang#134333 - daxpedda:stdarch-bump, r=Amanieu
Bump `stdarch` This bumps `stdarch` to rust-lang/stdarch@684de0d to get in rust-lang/stdarch#1677 (tracked in rust-lang#133908). From the [commit history](rust-lang/stdarch@e5e00aa...684de0d) I deduced that there shouldn't be any changes to Rust necessary. From past PRs I'm assuming that bumping `stdarch` like this is fine, but please let me know if this is somehow inappropriate or requires something more to be done! try-job: arm-android
2 parents 32c8a9f + 0dc0ab0 commit 70003c5

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

library/portable-simd/crates/core_simd/src/vendor/arm.rs

+2-11
Original file line numberDiff line numberDiff 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(

library/stdarch

Submodule stdarch updated 47 files

0 commit comments

Comments
 (0)