about summary refs log tree commit diff
path: root/src/librustc_feature
diff options
context:
space:
mode:
authorLeSeulArtichaut <leseulartichaut@gmail.com>2020-05-01 14:17:02 +0200
committerLeSeulArtichaut <leseulartichaut@gmail.com>2020-05-01 14:17:43 +0200
commit2474f0ed88bc1a06e02230619b18e7bc8bb673fc (patch)
treed41c98ef5c25c3e9ab18f8823a275ccb13094e09 /src/librustc_feature
parenteece58a8e35c444afba6fa34873bc0244e32cd29 (diff)
downloadrust-2474f0ed88bc1a06e02230619b18e7bc8bb673fc.tar.gz
rust-2474f0ed88bc1a06e02230619b18e7bc8bb673fc.zip
Allow `#[target_feature]` on safe functions
Diffstat (limited to 'src/librustc_feature')
-rw-r--r--src/librustc_feature/active.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/librustc_feature/active.rs b/src/librustc_feature/active.rs
index 7b3c599e8c7..cec9e0ce3af 100644
--- a/src/librustc_feature/active.rs
+++ b/src/librustc_feature/active.rs
@@ -559,6 +559,9 @@ declare_features! (
     /// Allow negative trait implementations.
     (active, negative_impls, "1.44.0", Some(68318), None),
 
+    /// Allows the use of `#[target_feature]` on safe functions.
+    (active, target_feature_11, "1.45.0", Some(69098), None),
+
     // -------------------------------------------------------------------------
     // feature-group-end: actual feature gates
     // -------------------------------------------------------------------------