Skip to content

Commit 5d0e1c9

Browse files
committed
Stabilize Wasm phase 4 & 5 proposals
1 parent 045f158 commit 5d0e1c9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Diff for: compiler/rustc_codegen_ssa/src/target_features.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -282,14 +282,15 @@ const RISCV_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
282282
const WASM_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
283283
// tidy-alphabetical-start
284284
("atomics", Some(sym::wasm_target_feature)),
285-
("bulk-memory", Some(sym::wasm_target_feature)),
285+
("bulk-memory", None),
286286
("exception-handling", Some(sym::wasm_target_feature)),
287+
("extended-const", None),
287288
("multivalue", Some(sym::wasm_target_feature)),
288-
("mutable-globals", Some(sym::wasm_target_feature)),
289-
("nontrapping-fptoint", Some(sym::wasm_target_feature)),
289+
("mutable-globals", None),
290+
("nontrapping-fptoint", None),
290291
("reference-types", Some(sym::wasm_target_feature)),
291292
("relaxed-simd", Some(sym::wasm_target_feature)),
292-
("sign-ext", Some(sym::wasm_target_feature)),
293+
("sign-ext", None),
293294
("simd128", None),
294295
// tidy-alphabetical-end
295296
];

0 commit comments

Comments
 (0)