about summary refs log tree commit diff
path: root/compiler/rustc_feature/src
diff options
context:
space:
mode:
authorTaiki Endo <te316e89@gmail.com>2024-11-24 21:42:22 +0900
committerTaiki Endo <te316e89@gmail.com>2024-11-24 21:42:22 +0900
commitc024d8ccdfb462f4e99b54e6c8456fbc4d745752 (patch)
tree746d303b898bf928538b56a2d50b1b5c05ed28a5 /compiler/rustc_feature/src
parent2c8f6de1babfd5cce9badd8ff85c0652377edd75 (diff)
downloadrust-c024d8ccdfb462f4e99b54e6c8456fbc4d745752.tar.gz
rust-c024d8ccdfb462f4e99b54e6c8456fbc4d745752.zip
Make s390x non-clobber-only vector register support unstable
Diffstat (limited to 'compiler/rustc_feature/src')
-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 e3dc73c1401..3b93c29e548 100644
--- a/compiler/rustc_feature/src/unstable.rs
+++ b/compiler/rustc_feature/src/unstable.rs
@@ -376,6 +376,8 @@ declare_features! (
     (unstable, arbitrary_self_types_pointers, "1.83.0", Some(44874)),
     /// Enables experimental inline assembly support for additional architectures.
     (unstable, asm_experimental_arch, "1.58.0", Some(93335)),
+    /// Enables experimental register support in inline assembly.
+    (unstable, asm_experimental_reg, "CURRENT_RUSTC_VERSION", Some(133416)),
     /// Allows using `label` operands in inline assembly.
     (unstable, asm_goto, "1.78.0", Some(119364)),
     /// Allows the `may_unwind` option in inline assembly.