We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 045f158 commit 5d0e1c9Copy full SHA for 5d0e1c9
compiler/rustc_codegen_ssa/src/target_features.rs
@@ -282,14 +282,15 @@ const RISCV_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
282
const WASM_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
283
// tidy-alphabetical-start
284
("atomics", Some(sym::wasm_target_feature)),
285
- ("bulk-memory", Some(sym::wasm_target_feature)),
+ ("bulk-memory", None),
286
("exception-handling", Some(sym::wasm_target_feature)),
287
+ ("extended-const", None),
288
("multivalue", Some(sym::wasm_target_feature)),
- ("mutable-globals", Some(sym::wasm_target_feature)),
289
- ("nontrapping-fptoint", Some(sym::wasm_target_feature)),
+ ("mutable-globals", None),
290
+ ("nontrapping-fptoint", None),
291
("reference-types", Some(sym::wasm_target_feature)),
292
("relaxed-simd", Some(sym::wasm_target_feature)),
- ("sign-ext", Some(sym::wasm_target_feature)),
293
+ ("sign-ext", None),
294
("simd128", None),
295
// tidy-alphabetical-end
296
];
0 commit comments