about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2023-11-22 07:25:27 +0100
committerRalf Jung <post@ralfj.de>2023-11-22 07:25:27 +0100
commit32fc54e5fa97cf4ed69ea97dcf631d747a33faae (patch)
tree573ec8b6decdcdda015313746f45b5456a88c269
parent739d55682659e4a81db6fd83f52b2491505030ea (diff)
downloadrust-32fc54e5fa97cf4ed69ea97dcf631d747a33faae.tar.gz
rust-32fc54e5fa97cf4ed69ea97dcf631d747a33faae.zip
make the 'abi_unadjusted' feature internal
-rw-r--r--compiler/rustc_feature/src/unstable.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/unstable.rs b/compiler/rustc_feature/src/unstable.rs
index b11b190bded..86e1825d7b5 100644
--- a/compiler/rustc_feature/src/unstable.rs
+++ b/compiler/rustc_feature/src/unstable.rs
@@ -160,7 +160,7 @@ declare_features! (
     // no-tracking-issue-start
 
     /// Allows using the `unadjusted` ABI; perma-unstable.
-    (unstable, abi_unadjusted, "1.16.0", None, None),
+    (internal, abi_unadjusted, "1.16.0", None, None),
     /// Allows using the `vectorcall` ABI.
     (unstable, abi_vectorcall, "1.7.0", None, None),
     /// Allows using `#![needs_allocator]`, an implementation detail of `#[global_allocator]`.