1
Fork 0

Stabilize Wasm phase 4 & 5 proposals

This commit is contained in:
daxpedda 2023-12-15 12:43:08 +01:00
parent ecd45472f8
commit 6a52feeac6
No known key found for this signature in database
GPG key ID: 43D62A3EA388E46F
4 changed files with 7 additions and 12 deletions

View file

@ -312,14 +312,15 @@ const RISCV_ALLOWED_FEATURES: &[(&str, Stability)] = &[
const WASM_ALLOWED_FEATURES: &[(&str, Stability)] = &[
// tidy-alphabetical-start
("atomics", Unstable(sym::wasm_target_feature)),
("bulk-memory", Unstable(sym::wasm_target_feature)),
("bulk-memory", Stable),
("exception-handling", Unstable(sym::wasm_target_feature)),
("extended-const", Stable),
("multivalue", Unstable(sym::wasm_target_feature)),
("mutable-globals", Unstable(sym::wasm_target_feature)),
("nontrapping-fptoint", Unstable(sym::wasm_target_feature)),
("mutable-globals", Stable),
("nontrapping-fptoint", Stable),
("reference-types", Unstable(sym::wasm_target_feature)),
("relaxed-simd", Unstable(sym::wasm_target_feature)),
("sign-ext", Unstable(sym::wasm_target_feature)),
("sign-ext", Stable),
("simd128", Stable),
// tidy-alphabetical-end
];