Skip to content

Commit f890596

Browse files
committed
Auto merge of rust-lang#86204 - alexcrichton:wasm-simd-stable, r=Amanieu
std: Stabilize wasm simd intrinsics This commit performs two changes to stabilize Rust support for WebAssembly simd intrinsics: * The stdarch submodule is updated to pull in rust-lang/stdarch#1179. * The `wasm_target_feature` feature gate requirement for the `simd128` feature has been removed, stabilizing the name `simd128`. This should conclude the FCP started on rust-lang#74372 and... Closes rust-lang#74372
2 parents 768a8ac + 34a02c3 commit f890596

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

core/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@
166166
#![feature(no_niche)] // rust-lang/rust#68303
167167
#![feature(no_coverage)] // rust-lang/rust#84605
168168
#![feature(int_error_matching)]
169+
#![cfg_attr(bootstrap, feature(target_feature_11))]
169170
#![deny(unsafe_op_in_unsafe_fn)]
170171
#![deny(or_patterns_back_compat)]
171172

stdarch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 37d6e1886369ea0176356286dc7fbd42ee5aa79c
1+
Subproject commit 1e05dffbeeb80ba61bf59cc63b222d538d7825ed

0 commit comments

Comments
 (0)