diff options
| author | Jacob Pratt <jacob@jhpratt.dev> | 2024-11-18 02:24:35 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-18 02:24:35 -0500 |
| commit | 72a8d536ef28ba6f7c185b905dbcefee7536fc72 (patch) | |
| tree | 4d636d3663f2a87eb19559df39c9a0a8f35b233b /compiler/rustc_feature/src | |
| parent | 21654a2f4478127f3751582c3f912246866d154d (diff) | |
| parent | 9d4b1b2db497102257c6f372f308492089d689b4 (diff) | |
| download | rust-72a8d536ef28ba6f7c185b905dbcefee7536fc72.tar.gz rust-72a8d536ef28ba6f7c185b905dbcefee7536fc72.zip | |
Rollup merge of #133142 - RalfJung:naming-is-hard, r=compiler-errors
rename rustc_const_stable_intrinsic -> rustc_intrinsic_const_stable_indirect In https://github.com/rust-lang/rust/pull/120370 this name caused confusion as the author thought the intrinsic was stable. So let's try a different name... If we can land this before the beta cutoff we can avoid needing `cfg(bootstrap)` for this. ;) Cc `@compiler-errors` `@saethlin`
Diffstat (limited to 'compiler/rustc_feature/src')
| -rw-r--r-- | compiler/rustc_feature/src/builtin_attrs.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/builtin_attrs.rs b/compiler/rustc_feature/src/builtin_attrs.rs index a4820ba8b72..ce2b47ed1ea 100644 --- a/compiler/rustc_feature/src/builtin_attrs.rs +++ b/compiler/rustc_feature/src/builtin_attrs.rs @@ -838,7 +838,7 @@ pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[ template!(Word), WarnFollowing, EncodeCrossCrate::No, IMPL_DETAIL, ), rustc_attr!( - rustc_const_stable_intrinsic, Normal, + rustc_intrinsic_const_stable_indirect, Normal, template!(Word), WarnFollowing, EncodeCrossCrate::No, IMPL_DETAIL, ), gated!( |
