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 Oct 31, 2023
1 parent 045f158 commit 5d0e1c9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions compiler/rustc_codegen_ssa/src/target_features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -282,14 +282,15 @@ const RISCV_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
const WASM_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
// tidy-alphabetical-start
("atomics", Some(sym::wasm_target_feature)),
("bulk-memory", Some(sym::wasm_target_feature)),
("bulk-memory", None),
("exception-handling", Some(sym::wasm_target_feature)),
("extended-const", None),
("multivalue", Some(sym::wasm_target_feature)),
("mutable-globals", Some(sym::wasm_target_feature)),
("nontrapping-fptoint", Some(sym::wasm_target_feature)),
("mutable-globals", None),
("nontrapping-fptoint", None),
("reference-types", Some(sym::wasm_target_feature)),
("relaxed-simd", Some(sym::wasm_target_feature)),
("sign-ext", Some(sym::wasm_target_feature)),
("sign-ext", None),
("simd128", None),
// tidy-alphabetical-end
];
Expand Down

0 comments on commit 5d0e1c9

Please sign in to comment.