Skip to content

Commit

Permalink
Stabilize Wasm phase 4 & 5 proposals
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda committed Nov 15, 2023
1 parent ee85f7f commit cc18845
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions compiler/rustc_codegen_ssa/src/target_features.rs
Expand Up @@ -324,14 +324,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
];
Expand Down

0 comments on commit cc18845

Please sign in to comment.