about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa
diff options
context:
space:
mode:
authorTony Arcieri <bascule@gmail.com>2022-02-07 12:22:21 -0700
committerTony Arcieri <bascule@gmail.com>2022-03-14 18:56:39 -0600
commit78567df57510db92350015c2e09ff3da0e86a8ba (patch)
tree65d4a1d6d4d1176a24635c7b370ac65b62270353 /compiler/rustc_codegen_ssa
parent2184c7c5687a89ce58e169546c9b83448f4d0ea1 (diff)
downloadrust-78567df57510db92350015c2e09ff3da0e86a8ba.tar.gz
rust-78567df57510db92350015c2e09ff3da0e86a8ba.zip
Stabilize ADX target feature
This is a continuation of #60109, which noted that while the ADX
intrinsics were stabilized, the corresponding target feature never was.

This PR follows the same general structure and stabilizes the ADX target
feature.
Diffstat (limited to 'compiler/rustc_codegen_ssa')
-rw-r--r--compiler/rustc_codegen_ssa/src/target_features.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/target_features.rs b/compiler/rustc_codegen_ssa/src/target_features.rs
index f37c6751381..5056ec1d385 100644
--- a/compiler/rustc_codegen_ssa/src/target_features.rs
+++ b/compiler/rustc_codegen_ssa/src/target_features.rs
@@ -148,7 +148,7 @@ const AARCH64_TIED_FEATURES: &[&[&str]] = &[
 ];
 
 const X86_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
-    ("adx", Some(sym::adx_target_feature)),
+    ("adx", None),
     ("aes", None),
     ("avx", None),
     ("avx2", None),