We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee85f7f commit cc18845Copy full SHA for cc18845
compiler/rustc_codegen_ssa/src/target_features.rs
@@ -324,14 +324,15 @@ const RISCV_ALLOWED_FEATURES: &[(&str, Stability)] = &[
324
const WASM_ALLOWED_FEATURES: &[(&str, Stability)] = &[
325
// tidy-alphabetical-start
326
("atomics", Unstable(sym::wasm_target_feature)),
327
- ("bulk-memory", Unstable(sym::wasm_target_feature)),
+ ("bulk-memory", Stable),
328
("exception-handling", Unstable(sym::wasm_target_feature)),
329
+ ("extended-const", Stable),
330
("multivalue", Unstable(sym::wasm_target_feature)),
- ("mutable-globals", Unstable(sym::wasm_target_feature)),
331
- ("nontrapping-fptoint", Unstable(sym::wasm_target_feature)),
+ ("mutable-globals", Stable),
332
+ ("nontrapping-fptoint", Stable),
333
("reference-types", Unstable(sym::wasm_target_feature)),
334
("relaxed-simd", Unstable(sym::wasm_target_feature)),
- ("sign-ext", Unstable(sym::wasm_target_feature)),
335
+ ("sign-ext", Stable),
336
("simd128", Stable),
337
// tidy-alphabetical-end
338
];
0 commit comments