about summary refs log tree commit diff
path: root/compiler/rustc_feature
diff options
context:
space:
mode:
authorGary Guo <gary@garyguo.net>2023-12-25 20:53:01 +0000
committerGary Guo <gary@garyguo.net>2024-02-24 18:49:39 +0000
commit93fa8579c6430d54525e1905eafff4dbcf9b31b0 (patch)
tree9067a6612b4f7d05213d708c49e6a64390be914d /compiler/rustc_feature
parent8f359beca4e58bc3ae795a666301a8f47023044c (diff)
downloadrust-93fa8579c6430d54525e1905eafff4dbcf9b31b0.tar.gz
rust-93fa8579c6430d54525e1905eafff4dbcf9b31b0.zip
Add asm label support to AST and HIR
Diffstat (limited to 'compiler/rustc_feature')
-rw-r--r--compiler/rustc_feature/src/unstable.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/unstable.rs b/compiler/rustc_feature/src/unstable.rs
index 93c183a65ef..74ec6a9713f 100644
--- a/compiler/rustc_feature/src/unstable.rs
+++ b/compiler/rustc_feature/src/unstable.rs
@@ -345,6 +345,8 @@ declare_features! (
     (unstable, asm_const, "1.58.0", Some(93332)),
     /// Enables experimental inline assembly support for additional architectures.
     (unstable, asm_experimental_arch, "1.58.0", Some(93335)),
+    /// Allows using `label` operands in inline assembly.
+    (unstable, asm_goto, "CURRENT_RUSTC_VERSION", Some(119364)),
     /// Allows the `may_unwind` option in inline assembly.
     (unstable, asm_unwind, "1.58.0", Some(93334)),
     /// Allows users to enforce equality of associated constants `TraitImpl<AssocConst=3>`.