about summary refs log tree commit diff
path: root/compiler/rustc_feature/src/accepted.rs
diff options
context:
space:
mode:
authorLéo Lanteri Thauvin <leseulartichaut@gmail.com>2022-07-23 14:32:52 +0200
committerLéo Lanteri Thauvin <leseulartichaut@gmail.com>2023-02-01 08:53:02 +0100
commitb379d216eefaba083a0627b1724d73f99d4bdf5c (patch)
tree740541ec30d79ee76eec12d8ce696ecb99aec7cc /compiler/rustc_feature/src/accepted.rs
parent0d32c8f2ce10710b6560dcb75f32f79c378410d0 (diff)
downloadrust-b379d216eefaba083a0627b1724d73f99d4bdf5c.tar.gz
rust-b379d216eefaba083a0627b1724d73f99d4bdf5c.zip
Stabilize `#![feature(target_feature_11)]`
Diffstat (limited to 'compiler/rustc_feature/src/accepted.rs')
-rw-r--r--compiler/rustc_feature/src/accepted.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/accepted.rs b/compiler/rustc_feature/src/accepted.rs
index e064e87a59a..2d80c15589d 100644
--- a/compiler/rustc_feature/src/accepted.rs
+++ b/compiler/rustc_feature/src/accepted.rs
@@ -312,6 +312,8 @@ declare_features! (
     (accepted, struct_variant, "1.0.0", None, None),
     /// Allows `#[target_feature(...)]`.
     (accepted, target_feature, "1.27.0", None, None),
+    /// Allows the use of `#[target_feature]` on safe functions.
+    (accepted, target_feature_11, "CURRENT_RUSTC_VERSION", Some(69098), None),
     /// Allows `fn main()` with return types which implements `Termination` (RFC 1937).
     (accepted, termination_trait, "1.26.0", Some(43301), None),
     /// Allows `#[test]` functions where the return type implements `Termination` (RFC 1937).