Skip to content

Commit f63ce3a

Browse files
committed
Auto merge of #128216 - tgross35:bump-stage0, r=<try>
[test] Bump bootstrap compiler to the new beta
2 parents 2f26b2a + 8750694 commit f63ce3a

File tree

48 files changed

+484
-611
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+484
-611
lines changed

compiler/rustc_builtin_macros/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#![allow(internal_features)]
66
#![allow(rustc::diagnostic_outside_of_impl)]
77
#![allow(rustc::untranslatable_diagnostic)]
8-
#![cfg_attr(bootstrap, feature(lint_reasons))]
98
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
109
#![doc(rust_logo)]
1110
#![feature(assert_matches)]

compiler/rustc_const_eval/src/check_consts/check.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -635,10 +635,7 @@ impl<'tcx> Visitor<'tcx> for Checker<'_, 'tcx> {
635635
trace!(
636636
"visit_projection_elem: place_ref={:?} elem={:?} \
637637
context={:?} location={:?}",
638-
place_ref,
639-
elem,
640-
context,
641-
location,
638+
place_ref, elem, context, location,
642639
);
643640

644641
self.super_projection_elem(place_ref, elem, context, location);

compiler/rustc_const_eval/src/interpret/operator.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -331,11 +331,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
331331
) -> InterpResult<'tcx, ImmTy<'tcx, M::Provenance>> {
332332
trace!(
333333
"Running binary op {:?}: {:?} ({}), {:?} ({})",
334-
bin_op,
335-
*left,
336-
left.layout.ty,
337-
*right,
338-
right.layout.ty
334+
bin_op, *left, left.layout.ty, *right, right.layout.ty
339335
);
340336

341337
match left.layout.ty.kind() {

compiler/rustc_const_eval/src/interpret/terminator.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -440,8 +440,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
440440
} else {
441441
trace!(
442442
"check_argument_compat: incompatible ABIs:\ncaller: {:?}\ncallee: {:?}",
443-
caller_abi,
444-
callee_abi
443+
caller_abi, callee_abi
445444
);
446445
return Ok(false);
447446
}

compiler/rustc_data_structures/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#![allow(internal_features)]
1111
#![allow(rustc::default_hash_types)]
1212
#![allow(rustc::potential_query_instability)]
13-
#![cfg_attr(bootstrap, feature(lint_reasons))]
1413
#![cfg_attr(not(parallel_compiler), feature(cell_leak))]
1514
#![deny(unsafe_op_in_unsafe_fn)]
1615
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]

compiler/rustc_feature/src/accepted.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ declare_features! (
8585
/// Allows `c"foo"` literals.
8686
(accepted, c_str_literals, "1.77.0", Some(105723)),
8787
/// Allows `extern "C-unwind" fn` to enable unwinding across ABI boundaries and treat `extern "C" fn` as nounwind.
88-
(accepted, c_unwind, "CURRENT_RUSTC_VERSION", Some(74990)),
88+
(accepted, c_unwind, "1.81.0", Some(74990)),
8989
/// Allows `#[cfg_attr(predicate, multiple, attributes, here)]`.
9090
(accepted, cfg_attr_multi, "1.33.0", Some(54881)),
9191
/// Allows the use of `#[cfg(doctest)]`, set when rustdoc is collecting doctests.
@@ -237,7 +237,7 @@ declare_features! (
237237
/// Allows `let...else` statements.
238238
(accepted, let_else, "1.65.0", Some(87335)),
239239
/// Allows using `reason` in lint attributes and the `#[expect(lint)]` lint check.
240-
(accepted, lint_reasons, "CURRENT_RUSTC_VERSION", Some(54503)),
240+
(accepted, lint_reasons, "1.81.0", Some(54503)),
241241
/// Allows `break {expr}` with a value inside `loop`s.
242242
(accepted, loop_break_value, "1.19.0", Some(37339)),
243243
/// Allows use of `?` as the Kleene "at most one" operator in macros.

compiler/rustc_feature/src/removed.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ declare_features! (
222222
(removed, unwind_attributes, "1.56.0", Some(58760), Some("use the C-unwind ABI instead")),
223223
(removed, visible_private_types, "1.0.0", None, None),
224224
/// Allows `extern "wasm" fn`
225-
(removed, wasm_abi, "CURRENT_RUSTC_VERSION", Some(83788),
225+
(removed, wasm_abi, "1.81.0", Some(83788),
226226
Some("non-standard wasm ABI is no longer supported")),
227227
// !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!!
228228
// Features are listed in alphabetical order. Tidy will fail if you don't keep it this way.

compiler/rustc_feature/src/unstable.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ declare_features! (
516516
/// Give access to additional metadata about declarative macro meta-variables.
517517
(unstable, macro_metavar_expr, "1.61.0", Some(83527)),
518518
/// Provides a way to concatenate identifiers using metavariable expressions.
519-
(unstable, macro_metavar_expr_concat, "CURRENT_RUSTC_VERSION", Some(124225)),
519+
(unstable, macro_metavar_expr_concat, "1.81.0", Some(124225)),
520520
/// Allows `#[marker]` on certain traits allowing overlapping implementations.
521521
(unstable, marker_trait_attr, "1.30.0", Some(29864)),
522522
/// Allows exhaustive pattern matching on types that contain uninhabited types in cases that are
@@ -561,11 +561,11 @@ declare_features! (
561561
/// Allows using multiple nested field accesses in offset_of!
562562
(unstable, offset_of_nested, "1.77.0", Some(120140)),
563563
/// Allows using fields with slice type in offset_of!
564-
(unstable, offset_of_slice, "CURRENT_RUSTC_VERSION", Some(126151)),
564+
(unstable, offset_of_slice, "1.81.0", Some(126151)),
565565
/// Allows using `#[optimize(X)]`.
566566
(unstable, optimize_attribute, "1.34.0", Some(54882)),
567567
/// Allows specifying nop padding on functions for dynamic patching.
568-
(unstable, patchable_function_entry, "CURRENT_RUSTC_VERSION", Some(123115)),
568+
(unstable, patchable_function_entry, "1.81.0", Some(123115)),
569569
/// Allows postfix match `expr.match { ... }`
570570
(unstable, postfix_match, "1.79.0", Some(121618)),
571571
/// Allows `use<'a, 'b, A, B>` in `impl Trait + use<...>` for precise capture of generic args.
@@ -577,7 +577,7 @@ declare_features! (
577577
/// Makes `&` and `&mut` patterns eat only one layer of references in Rust 2024.
578578
(incomplete, ref_pat_eat_one_layer_2024, "1.79.0", Some(123076)),
579579
/// Makes `&` and `&mut` patterns eat only one layer of references in Rust 2024—structural variant
580-
(incomplete, ref_pat_eat_one_layer_2024_structural, "CURRENT_RUSTC_VERSION", Some(123076)),
580+
(incomplete, ref_pat_eat_one_layer_2024_structural, "1.81.0", Some(123076)),
581581
/// Allows using the `#[register_tool]` attribute.
582582
(unstable, register_tool, "1.41.0", Some(66079)),
583583
/// Allows the `#[repr(i128)]` attribute for enums.
@@ -643,9 +643,9 @@ declare_features! (
643643
/// Allows using the `#[used(linker)]` (or `#[used(compiler)]`) attribute.
644644
(unstable, used_with_arg, "1.60.0", Some(93798)),
645645
/// Allows use of x86 `AMX` target-feature attributes and intrinsics
646-
(unstable, x86_amx_intrinsics, "CURRENT_RUSTC_VERSION", Some(126622)),
646+
(unstable, x86_amx_intrinsics, "1.81.0", Some(126622)),
647647
/// Allows use of the `xop` target-feature
648-
(unstable, xop_target_feature, "CURRENT_RUSTC_VERSION", Some(127208)),
648+
(unstable, xop_target_feature, "1.81.0", Some(127208)),
649649
/// Allows `do yeet` expressions
650650
(unstable, yeet_expr, "1.62.0", Some(96373)),
651651
// !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!! !!!!

compiler/rustc_lint_defs/src/builtin.rs

-2
Original file line numberDiff line numberDiff line change
@@ -615,8 +615,6 @@ declare_lint! {
615615
/// ### Example
616616
///
617617
/// ```rust
618-
/// #![cfg_attr(bootstrap, feature(lint_reasons))]
619-
///
620618
/// #[expect(unused_variables)]
621619
/// let x = 10;
622620
/// println!("{}", x);

compiler/rustc_parse/src/errors.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -554,12 +554,7 @@ pub(crate) enum MissingInInForLoopSub {
554554
code = "in"
555555
)]
556556
InNotOf(#[primary_span] Span),
557-
#[suggestion(
558-
parse_add_in,
559-
style = "verbose",
560-
applicability = "maybe-incorrect",
561-
code = " in "
562-
)]
557+
#[suggestion(parse_add_in, style = "verbose", applicability = "maybe-incorrect", code = " in ")]
563558
AddIn(#[primary_span] Span),
564559
}
565560

compiler/rustc_trait_selection/src/errors.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -1585,10 +1585,7 @@ pub enum TypeErrorAdditionalDiags {
15851585
span: Span,
15861586
code: String,
15871587
},
1588-
#[multipart_suggestion(
1589-
trait_selection_meant_str_literal,
1590-
applicability = "machine-applicable"
1591-
)]
1588+
#[multipart_suggestion(trait_selection_meant_str_literal, applicability = "machine-applicable")]
15921589
MeantStrLiteral {
15931590
#[suggestion_part(code = "\"")]
15941591
start: Span,

compiler/rustc_ty_utils/src/layout.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -733,9 +733,7 @@ fn coroutine_saved_local_eligibility(
733733
// point, so it is no longer a candidate.
734734
trace!(
735735
"removing local {:?} in >1 variant ({:?}, {:?})",
736-
local,
737-
variant_index,
738-
idx
736+
local, variant_index, idx
739737
);
740738
ineligible_locals.insert(*local);
741739
assignments[*local] = Ineligible(None);

library/alloc/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@
166166
//
167167
// Language features:
168168
// tidy-alphabetical-start
169-
#![cfg_attr(bootstrap, feature(c_unwind))]
170169
#![cfg_attr(not(test), feature(coroutine_trait))]
171170
#![cfg_attr(test, feature(panic_update_hook))]
172171
#![cfg_attr(test, feature(test))]

library/core/src/char/methods.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,7 @@ impl char {
223223
/// assert_eq!('❤', c);
224224
/// ```
225225
#[stable(feature = "assoc_char_funcs", since = "1.52.0")]
226-
#[rustc_const_stable(
227-
feature = "const_char_from_u32_unchecked",
228-
since = "CURRENT_RUSTC_VERSION"
229-
)]
226+
#[rustc_const_stable(feature = "const_char_from_u32_unchecked", since = "1.81.0")]
230227
#[must_use]
231228
#[inline]
232229
pub const unsafe fn from_u32_unchecked(i: u32) -> char {

library/core/src/char/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ pub const fn from_u32(i: u32) -> Option<char> {
121121
/// Converts a `u32` to a `char`, ignoring validity. Use [`char::from_u32_unchecked`].
122122
/// instead.
123123
#[stable(feature = "char_from_unchecked", since = "1.5.0")]
124-
#[rustc_const_stable(feature = "const_char_from_u32_unchecked", since = "CURRENT_RUSTC_VERSION")]
124+
#[rustc_const_stable(feature = "const_char_from_u32_unchecked", since = "1.81.0")]
125125
#[must_use]
126126
#[inline]
127127
pub const unsafe fn from_u32_unchecked(i: u32) -> char {

library/core/src/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![doc = include_str!("error.md")]
2-
#![stable(feature = "error_in_core", since = "CURRENT_RUSTC_VERSION")]
2+
#![stable(feature = "error_in_core", since = "1.81.0")]
33

44
#[cfg(test)]
55
mod tests;

library/core/src/ffi/c_str.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ impl CStr {
277277
#[inline] // inline is necessary for codegen to see strlen.
278278
#[must_use]
279279
#[stable(feature = "rust1", since = "1.0.0")]
280-
#[rustc_const_stable(feature = "const_cstr_from_ptr", since = "CURRENT_RUSTC_VERSION")]
280+
#[rustc_const_stable(feature = "const_cstr_from_ptr", since = "1.81.0")]
281281
pub const unsafe fn from_ptr<'a>(ptr: *const c_char) -> &'a CStr {
282282
// SAFETY: The caller has provided a pointer that points to a valid C
283283
// string with a NUL terminator less than `isize::MAX` from `ptr`.
@@ -539,7 +539,7 @@ impl CStr {
539539
#[must_use]
540540
#[doc(alias("len", "strlen"))]
541541
#[stable(feature = "cstr_count_bytes", since = "1.79.0")]
542-
#[rustc_const_stable(feature = "const_cstr_from_ptr", since = "CURRENT_RUSTC_VERSION")]
542+
#[rustc_const_stable(feature = "const_cstr_from_ptr", since = "1.81.0")]
543543
pub const fn count_bytes(&self) -> usize {
544544
self.inner.len() - 1
545545
}
@@ -734,7 +734,7 @@ impl AsRef<CStr> for CStr {
734734
/// located within `isize::MAX` from `ptr`.
735735
#[inline]
736736
#[unstable(feature = "cstr_internals", issue = "none")]
737-
#[rustc_const_stable(feature = "const_cstr_from_ptr", since = "CURRENT_RUSTC_VERSION")]
737+
#[rustc_const_stable(feature = "const_cstr_from_ptr", since = "1.81.0")]
738738
#[rustc_allow_const_fn_unstable(const_eval_select)]
739739
const unsafe fn strlen(ptr: *const c_char) -> usize {
740740
const fn strlen_ct(s: *const c_char) -> usize {

library/core/src/hint.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ pub const unsafe fn unreachable_unchecked() -> ! {
195195
#[track_caller]
196196
#[inline(always)]
197197
#[doc(alias = "assume")]
198-
#[stable(feature = "hint_assert_unchecked", since = "CURRENT_RUSTC_VERSION")]
199-
#[rustc_const_stable(feature = "hint_assert_unchecked", since = "CURRENT_RUSTC_VERSION")]
198+
#[stable(feature = "hint_assert_unchecked", since = "1.81.0")]
199+
#[rustc_const_stable(feature = "hint_assert_unchecked", since = "1.81.0")]
200200
pub const unsafe fn assert_unchecked(cond: bool) {
201201
// SAFETY: The caller promised `cond` is true.
202202
unsafe {

library/core/src/intrinsics.rs

-53
Original file line numberDiff line numberDiff line change
@@ -1017,45 +1017,6 @@ extern "rust-intrinsic" {
10171017
#[rustc_nounwind]
10181018
pub fn breakpoint();
10191019

1020-
#[cfg(bootstrap)]
1021-
#[rustc_const_stable(feature = "const_size_of", since = "1.40.0")]
1022-
#[rustc_safe_intrinsic]
1023-
#[rustc_nounwind]
1024-
pub fn size_of<T>() -> usize;
1025-
1026-
#[cfg(bootstrap)]
1027-
#[rustc_const_stable(feature = "const_min_align_of", since = "1.40.0")]
1028-
#[rustc_safe_intrinsic]
1029-
#[rustc_nounwind]
1030-
pub fn min_align_of<T>() -> usize;
1031-
1032-
#[cfg(bootstrap)]
1033-
#[rustc_const_unstable(feature = "const_pref_align_of", issue = "91971")]
1034-
#[rustc_nounwind]
1035-
pub fn pref_align_of<T>() -> usize;
1036-
1037-
#[cfg(bootstrap)]
1038-
#[rustc_const_unstable(feature = "const_size_of_val", issue = "46571")]
1039-
#[rustc_nounwind]
1040-
pub fn size_of_val<T: ?Sized>(_: *const T) -> usize;
1041-
1042-
#[cfg(bootstrap)]
1043-
#[rustc_const_unstable(feature = "const_align_of_val", issue = "46571")]
1044-
#[rustc_nounwind]
1045-
pub fn min_align_of_val<T: ?Sized>(_: *const T) -> usize;
1046-
1047-
#[cfg(bootstrap)]
1048-
#[rustc_const_unstable(feature = "const_type_name", issue = "63084")]
1049-
#[rustc_safe_intrinsic]
1050-
#[rustc_nounwind]
1051-
pub fn type_name<T: ?Sized>() -> &'static str;
1052-
1053-
#[cfg(bootstrap)]
1054-
#[rustc_const_unstable(feature = "const_type_id", issue = "77125")]
1055-
#[rustc_safe_intrinsic]
1056-
#[rustc_nounwind]
1057-
pub fn type_id<T: ?Sized + 'static>() -> u128;
1058-
10591020
/// A guard for unsafe functions that cannot ever be executed if `T` is uninhabited:
10601021
/// This will statically either panic, or do nothing.
10611022
///
@@ -2385,12 +2346,6 @@ extern "rust-intrinsic" {
23852346
#[rustc_nounwind]
23862347
pub fn discriminant_value<T>(v: &T) -> <T as DiscriminantKind>::Discriminant;
23872348

2388-
#[cfg(bootstrap)]
2389-
#[rustc_const_unstable(feature = "variant_count", issue = "73662")]
2390-
#[rustc_safe_intrinsic]
2391-
#[rustc_nounwind]
2392-
pub fn variant_count<T>() -> usize;
2393-
23942349
/// Rust's "try catch" construct for unwinding. Invokes the function pointer `try_fn` with the
23952350
/// data pointer `data`, and calls `catch_fn` if unwinding occurs while `try_fn` runs.
23962351
///
@@ -2768,7 +2723,6 @@ pub unsafe fn vtable_align(_ptr: *const ()) -> usize {
27682723
#[rustc_const_stable(feature = "const_size_of", since = "1.40.0")]
27692724
#[rustc_intrinsic]
27702725
#[rustc_intrinsic_must_be_overridden]
2771-
#[cfg(not(bootstrap))]
27722726
pub const fn size_of<T>() -> usize {
27732727
unreachable!()
27742728
}
@@ -2786,7 +2740,6 @@ pub const fn size_of<T>() -> usize {
27862740
#[rustc_const_stable(feature = "const_min_align_of", since = "1.40.0")]
27872741
#[rustc_intrinsic]
27882742
#[rustc_intrinsic_must_be_overridden]
2789-
#[cfg(not(bootstrap))]
27902743
pub const fn min_align_of<T>() -> usize {
27912744
unreachable!()
27922745
}
@@ -2800,7 +2753,6 @@ pub const fn min_align_of<T>() -> usize {
28002753
#[rustc_const_unstable(feature = "const_pref_align_of", issue = "91971")]
28012754
#[rustc_intrinsic]
28022755
#[rustc_intrinsic_must_be_overridden]
2803-
#[cfg(not(bootstrap))]
28042756
pub const unsafe fn pref_align_of<T>() -> usize {
28052757
unreachable!()
28062758
}
@@ -2819,7 +2771,6 @@ pub const unsafe fn pref_align_of<T>() -> usize {
28192771
#[rustc_const_unstable(feature = "variant_count", issue = "73662")]
28202772
#[rustc_intrinsic]
28212773
#[rustc_intrinsic_must_be_overridden]
2822-
#[cfg(not(bootstrap))]
28232774
pub const fn variant_count<T>() -> usize {
28242775
unreachable!()
28252776
}
@@ -2836,7 +2787,6 @@ pub const fn variant_count<T>() -> usize {
28362787
#[rustc_const_unstable(feature = "const_size_of_val", issue = "46571")]
28372788
#[rustc_intrinsic]
28382789
#[rustc_intrinsic_must_be_overridden]
2839-
#[cfg(not(bootstrap))]
28402790
pub const unsafe fn size_of_val<T: ?Sized>(_ptr: *const T) -> usize {
28412791
unreachable!()
28422792
}
@@ -2853,7 +2803,6 @@ pub const unsafe fn size_of_val<T: ?Sized>(_ptr: *const T) -> usize {
28532803
#[rustc_const_unstable(feature = "const_align_of_val", issue = "46571")]
28542804
#[rustc_intrinsic]
28552805
#[rustc_intrinsic_must_be_overridden]
2856-
#[cfg(not(bootstrap))]
28572806
pub const unsafe fn min_align_of_val<T: ?Sized>(_ptr: *const T) -> usize {
28582807
unreachable!()
28592808
}
@@ -2871,7 +2820,6 @@ pub const unsafe fn min_align_of_val<T: ?Sized>(_ptr: *const T) -> usize {
28712820
#[rustc_const_unstable(feature = "const_type_name", issue = "63084")]
28722821
#[rustc_intrinsic]
28732822
#[rustc_intrinsic_must_be_overridden]
2874-
#[cfg(not(bootstrap))]
28752823
pub const fn type_name<T: ?Sized>() -> &'static str {
28762824
unreachable!()
28772825
}
@@ -2891,7 +2839,6 @@ pub const fn type_name<T: ?Sized>() -> &'static str {
28912839
#[rustc_const_unstable(feature = "const_type_id", issue = "77125")]
28922840
#[rustc_intrinsic]
28932841
#[rustc_intrinsic_must_be_overridden]
2894-
#[cfg(not(bootstrap))]
28952842
pub const fn type_id<T: ?Sized + 'static>() -> u128 {
28962843
unreachable!()
28972844
}

library/core/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,6 @@
193193
//
194194
// Language features:
195195
// tidy-alphabetical-start
196-
#![cfg_attr(bootstrap, feature(c_unwind))]
197-
#![cfg_attr(bootstrap, feature(effects))]
198196
#![feature(abi_unadjusted)]
199197
#![feature(adt_const_params)]
200198
#![feature(allow_internal_unsafe)]

library/core/src/marker.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,6 @@ pub trait FnPtr: Copy + Clone {
10591059
}
10601060

10611061
/// Derive macro generating impls of traits related to smart pointers.
1062-
#[cfg(not(bootstrap))]
10631062
#[rustc_builtin_macro]
10641063
#[allow_internal_unstable(dispatch_from_dyn, coerce_unsized, unsize)]
10651064
#[unstable(feature = "derive_smart_pointer", issue = "123430")]
@@ -1077,7 +1076,6 @@ pub macro SmartPointer($item:item) {
10771076
reason = "internal module for implementing effects"
10781077
)]
10791078
#[allow(missing_debug_implementations)] // these unit structs don't need `Debug` impls.
1080-
#[cfg(not(bootstrap))]
10811079
pub mod effects {
10821080
#[lang = "EffectsNoRuntime"]
10831081
pub struct NoRuntime;

0 commit comments

Comments
 (0)