Rollup merge of #118167 - RalfJung:unadjusted-abi-is-internal, r=petrochenkov

make the 'abi_unadjusted' feature internal

As [suggested](https://github.com/rust-lang/rust/pull/118127#issuecomment-1820736389) by `@bjorn3.`
This commit is contained in:
Matthias Krüger 2023-11-23 07:06:31 +01:00 committed by GitHub
commit 9e944c8c1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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]`.