Skip to content

Commit 7f7454d

Browse files
committed
Stabilize Wasm phase 4 & 5 proposals
1 parent d253bf6 commit 7f7454d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

compiler/rustc_target/src/target_features.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -309,14 +309,15 @@ const RISCV_ALLOWED_FEATURES: &[(&str, Stability)] = &[
309309
const WASM_ALLOWED_FEATURES: &[(&str, Stability)] = &[
310310
// tidy-alphabetical-start
311311
("atomics", Unstable(sym::wasm_target_feature)),
312-
("bulk-memory", Unstable(sym::wasm_target_feature)),
312+
("bulk-memory", Stable),
313313
("exception-handling", Unstable(sym::wasm_target_feature)),
314+
("extended-const", Stable),
314315
("multivalue", Unstable(sym::wasm_target_feature)),
315-
("mutable-globals", Unstable(sym::wasm_target_feature)),
316-
("nontrapping-fptoint", Unstable(sym::wasm_target_feature)),
316+
("mutable-globals", Stable),
317+
("nontrapping-fptoint", Stable),
317318
("reference-types", Unstable(sym::wasm_target_feature)),
318319
("relaxed-simd", Unstable(sym::wasm_target_feature)),
319-
("sign-ext", Unstable(sym::wasm_target_feature)),
320+
("sign-ext", Stable),
320321
("simd128", Stable),
321322
// tidy-alphabetical-end
322323
];

0 commit comments

Comments
 (0)