Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cc18845

Browse files
committedNov 15, 2023
Stabilize Wasm phase 4 & 5 proposals
1 parent ee85f7f commit cc18845

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 

‎compiler/rustc_codegen_ssa/src/target_features.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -324,14 +324,15 @@ const RISCV_ALLOWED_FEATURES: &[(&str, Stability)] = &[
324324
const WASM_ALLOWED_FEATURES: &[(&str, Stability)] = &[
325325
// tidy-alphabetical-start
326326
("atomics", Unstable(sym::wasm_target_feature)),
327-
("bulk-memory", Unstable(sym::wasm_target_feature)),
327+
("bulk-memory", Stable),
328328
("exception-handling", Unstable(sym::wasm_target_feature)),
329+
("extended-const", Stable),
329330
("multivalue", Unstable(sym::wasm_target_feature)),
330-
("mutable-globals", Unstable(sym::wasm_target_feature)),
331-
("nontrapping-fptoint", Unstable(sym::wasm_target_feature)),
331+
("mutable-globals", Stable),
332+
("nontrapping-fptoint", Stable),
332333
("reference-types", Unstable(sym::wasm_target_feature)),
333334
("relaxed-simd", Unstable(sym::wasm_target_feature)),
334-
("sign-ext", Unstable(sym::wasm_target_feature)),
335+
("sign-ext", Stable),
335336
("simd128", Stable),
336337
// tidy-alphabetical-end
337338
];

0 commit comments

Comments
 (0)
Failed to load comments.