about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2023-09-23 08:39:36 +0200
committerRalf Jung <post@ralfj.de>2023-09-23 08:39:36 +0200
commit37acbbb4b51b8d390f19fa5877cdd3d36bc5ff0f (patch)
tree8828e7fcd18d8227c204f81c71b93451ca243376
parentbf982631df866498a295528ff0047207e881d55d (diff)
downloadrust-37acbbb4b51b8d390f19fa5877cdd3d36bc5ff0f.tar.gz
rust-37acbbb4b51b8d390f19fa5877cdd3d36bc5ff0f.zip
make link_llvm_intrinsics feature internal
-rw-r--r--compiler/rustc_feature/src/active.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs
index f3b88f46bae..c47fb9dd967 100644
--- a/compiler/rustc_feature/src/active.rs
+++ b/compiler/rustc_feature/src/active.rs
@@ -236,7 +236,7 @@ declare_features! (
     /// Allows using the `#[fundamental]` attribute.
     (active, fundamental, "1.0.0", Some(29635), None),
     /// Allows using `#[link_name="llvm.*"]`.
-    (active, link_llvm_intrinsics, "1.0.0", Some(29602), None),
+    (internal, link_llvm_intrinsics, "1.0.0", Some(29602), None),
     /// Allows using the `#[linkage = ".."]` attribute.
     (active, linkage, "1.0.0", Some(29603), None),
     /// Allows declaring with `#![needs_panic_runtime]` that a panic runtime is needed.