Skip to content

Commit 7e51258

Browse files
Rollup merge of rust-lang#137527 - nikic:update-stdarch, r=Amanieu
Update stdarch Update stdarch to fix rust-lang#137419. (This also pulls in a lot of other changes though). r? `@Amanieu`
2 parents 04662dd + b189cb9 commit 7e51258

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

library/core/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ check-cfg = [
3232
'cfg(bootstrap)',
3333
'cfg(no_fp_fmt_parse)',
3434
'cfg(stdarch_intel_sde)',
35+
# #[cfg(bootstrap)]
36+
'cfg(target_feature, values("vector-enhancements-1"))',
3537
# core use #[path] imports to portable-simd `core_simd` crate
3638
# and to stdarch `core_arch` crate which messes-up with Cargo list
3739
# of declared features, we therefor expect any feature cfg

library/core/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -205,11 +205,13 @@
205205
#![feature(arm_target_feature)]
206206
#![feature(avx512_target_feature)]
207207
#![feature(hexagon_target_feature)]
208+
#![feature(keylocker_x86)]
208209
#![feature(loongarch_target_feature)]
209210
#![feature(mips_target_feature)]
210211
#![feature(powerpc_target_feature)]
211212
#![feature(riscv_target_feature)]
212213
#![feature(rtm_target_feature)]
214+
#![feature(s390x_target_feature)]
213215
#![feature(sha512_sm_x86)]
214216
#![feature(sse4a_target_feature)]
215217
#![feature(tbm_target_feature)]

library/stdarch

Submodule stdarch updated 170 files

0 commit comments

Comments
 (0)