about summary refs log tree commit diff
path: root/compiler/rustc_feature/src
diff options
context:
space:
mode:
authorLoïc BRANSTETT <lolo.branstett@numericable.fr>2022-04-22 16:34:56 +0200
committerUrgau <urgau@numericable.fr>2022-05-24 13:51:36 +0200
commit8345571cd07a00c780f5c156dd2d20a84b432807 (patch)
tree0f055a874067e419f666fe7f2800990476e59914 /compiler/rustc_feature/src
parentae38533ed76dfb6c696123a0c22f9b2e38a916fc (diff)
downloadrust-8345571cd07a00c780f5c156dd2d20a84b432807.tar.gz
rust-8345571cd07a00c780f5c156dd2d20a84b432807.zip
RFC3239: Implement compact `cfg(target(..))`
Diffstat (limited to 'compiler/rustc_feature/src')
-rw-r--r--compiler/rustc_feature/src/active.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs
index 520769d308e..ec8144229de 100644
--- a/compiler/rustc_feature/src/active.rs
+++ b/compiler/rustc_feature/src/active.rs
@@ -319,6 +319,8 @@ declare_features! (
     (active, cfg_sanitize, "1.41.0", Some(39699), None),
     /// Allows `cfg(target_abi = "...")`.
     (active, cfg_target_abi, "1.55.0", Some(80970), None),
+    /// Allows `cfg(target(abi = "..."))`.
+    (active, cfg_target_compact, "1.63.0", Some(96901), None),
     /// Allows `cfg(target_has_atomic_load_store = "...")`.
     (active, cfg_target_has_atomic, "1.60.0", Some(94039), None),
     /// Allows `cfg(target_has_atomic_equal_alignment = "...")`.