1
Fork 0

Add features gates for experimental asm features

This commit is contained in:
Amanieu d'Antras 2021-10-27 18:37:18 +01:00
parent 3831aaa13c
commit eb32c00216
42 changed files with 243 additions and 98 deletions

View file

@ -692,6 +692,15 @@ declare_features! (
/// Tells rustdoc to automatically generate `#[doc(cfg(...))]`.
(active, doc_auto_cfg, "1.58.0", Some(43781), None),
/// Allows using `const` operands in inline assembly.
(active, asm_const, "1.58.0", Some(72016), None),
/// Allows using `sym` operands in inline assembly.
(active, asm_sym, "1.58.0", Some(72016), None),
/// Enables experimental inline assembly support for additional architectures.
(active, asm_experimental_arch, "1.58.0", Some(72016), None),
// -------------------------------------------------------------------------
// feature-group-end: actual feature gates
// -------------------------------------------------------------------------