Skip to content

Commit c5cbf78

Browse files
committed
Auto merge of #88752 - Mark-Simulacrum:bootstrap-bump, r=m-ou-se
Bump stage0 compiler to 1.56 r? `@pietroalbini` (but others should feel free to steal)
2 parents 626649f + b4e7649 commit c5cbf78

File tree

29 files changed

+344
-430
lines changed

29 files changed

+344
-430
lines changed

compiler/rustc_ast/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@
99
test(attr(deny(warnings)))
1010
)]
1111
#![feature(box_patterns)]
12-
#![cfg_attr(bootstrap, feature(const_fn_transmute))]
1312
#![feature(crate_visibility_modifier)]
1413
#![feature(if_let_guard)]
1514
#![feature(iter_zip)]
1615
#![feature(label_break_value)]
1716
#![feature(nll)]
1817
#![feature(min_specialization)]
19-
#![cfg_attr(bootstrap, allow(incomplete_features))] // if_let_guard
2018
#![recursion_limit = "256"]
2119

2220
#[macro_use]

compiler/rustc_ast_passes/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
//!
55
//! The crate also contains other misc AST visitors, e.g. `node_count` and `show_span`.
66
7-
#![cfg_attr(bootstrap, feature(bindings_after_at))]
87
#![feature(iter_is_partitioned)]
98
#![feature(box_patterns)]
109
#![recursion_limit = "256"]

compiler/rustc_const_eval/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ Rust MIR: a lowered representation of Rust.
55
*/
66

77
#![feature(assert_matches)]
8-
#![cfg_attr(bootstrap, feature(bindings_after_at))]
98
#![feature(bool_to_option)]
109
#![feature(box_patterns)]
1110
#![feature(control_flow_enum)]

compiler/rustc_data_structures/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121
#![feature(iter_map_while)]
2222
#![feature(maybe_uninit_uninit_array)]
2323
#![feature(min_specialization)]
24-
#![cfg_attr(bootstrap, feature(min_type_alias_impl_trait))]
25-
#![cfg_attr(not(bootstrap), feature(type_alias_impl_trait))]
24+
#![feature(type_alias_impl_trait)]
2625
#![feature(new_uninit)]
2726
#![feature(nll)]
2827
#![feature(once_cell)]

compiler/rustc_errors/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
#![feature(format_args_capture)]
1010
#![feature(iter_zip)]
1111
#![feature(nll)]
12-
#![cfg_attr(bootstrap, allow(incomplete_features))] // if_let_guard
1312

1413
#[macro_use]
1514
extern crate rustc_macros;

compiler/rustc_expand/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![cfg_attr(bootstrap, feature(bindings_after_at))]
21
#![feature(crate_visibility_modifier)]
32
#![feature(decl_macro)]
43
#![feature(destructuring_assignment)]
@@ -9,7 +8,6 @@
98
#![feature(proc_macro_internals)]
109
#![feature(proc_macro_span)]
1110
#![feature(try_blocks)]
12-
#![cfg_attr(bootstrap, allow(incomplete_features))] // if_let_guard
1311
#![recursion_limit = "256"]
1412

1513
#[macro_use]

compiler/rustc_middle/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
#![feature(try_reserve)]
5757
#![feature(try_reserve_kind)]
5858
#![feature(nonzero_ops)]
59-
#![cfg_attr(bootstrap, allow(incomplete_features))] // if_let_guard
6059
#![recursion_limit = "512"]
6160

6261
#[macro_use]

compiler/rustc_mir_transform/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![cfg_attr(bootstrap, feature(bindings_after_at))]
21
#![feature(box_patterns)]
32
#![feature(box_syntax)]
43
#![feature(crate_visibility_modifier)]

compiler/rustc_parse/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
#![feature(array_windows)]
44
#![feature(crate_visibility_modifier)]
55
#![feature(if_let_guard)]
6-
#![cfg_attr(bootstrap, feature(bindings_after_at))]
76
#![feature(box_patterns)]
8-
#![cfg_attr(bootstrap, allow(incomplete_features))] // if_let_guard
97
#![recursion_limit = "256"]
108

119
use rustc_ast as ast;

compiler/rustc_save_analysis/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
22
#![feature(if_let_guard)]
33
#![feature(nll)]
4-
#![cfg_attr(bootstrap, allow(incomplete_features))] // if_let_guard
54
#![recursion_limit = "256"]
65

76
mod dump_visitor;

compiler/rustc_span/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#![feature(nll)]
2222
#![feature(min_specialization)]
2323
#![feature(thread_local_const_init)]
24-
#![cfg_attr(bootstrap, allow(incomplete_features))] // if_let_guard
2524

2625
#[macro_use]
2726
extern crate rustc_macros;

compiler/rustc_typeck/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ This API is completely unstable and subject to change.
5656
*/
5757

5858
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
59-
#![cfg_attr(bootstrap, feature(bindings_after_at))]
6059
#![feature(bool_to_option)]
6160
#![feature(crate_visibility_modifier)]
6261
#![feature(format_args_capture)]
@@ -69,7 +68,6 @@ This API is completely unstable and subject to change.
6968
#![feature(never_type)]
7069
#![feature(slice_partition_dedup)]
7170
#![feature(control_flow_enum)]
72-
#![cfg_attr(bootstrap, allow(incomplete_features))] // if_let_guard
7371
#![recursion_limit = "256"]
7472

7573
#[macro_use]

library/alloc/src/lib.rs

-3
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@
8585
#![feature(allow_internal_unstable)]
8686
#![feature(arbitrary_self_types)]
8787
#![feature(async_stream)]
88-
#![cfg_attr(bootstrap, feature(bindings_after_at))]
8988
#![feature(box_patterns)]
9089
#![feature(box_syntax)]
9190
#![feature(cfg_sanitize)]
@@ -143,8 +142,6 @@
143142
#![feature(alloc_layout_extra)]
144143
#![feature(trusted_random_access)]
145144
#![feature(try_trait_v2)]
146-
#![cfg_attr(bootstrap, feature(min_type_alias_impl_trait))]
147-
#![cfg_attr(not(bootstrap), feature(type_alias_impl_trait))]
148145
#![feature(associated_type_bounds)]
149146
#![feature(slice_group_by)]
150147
#![feature(decl_macro)]

library/core/src/fmt/mod.rs

-25
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,6 @@ enum FlagV1 {
333333
impl<'a> Arguments<'a> {
334334
/// When using the format_args!() macro, this function is used to generate the
335335
/// Arguments structure.
336-
#[cfg(not(bootstrap))]
337336
#[doc(hidden)]
338337
#[inline]
339338
#[unstable(feature = "fmt_internals", reason = "internal to format_args!", issue = "none")]
@@ -347,25 +346,13 @@ impl<'a> Arguments<'a> {
347346
}
348347
Arguments { pieces, fmt: None, args }
349348
}
350-
#[cfg(bootstrap)]
351-
#[doc(hidden)]
352-
#[inline]
353-
#[unstable(feature = "fmt_internals", reason = "internal to format_args!", issue = "none")]
354-
#[rustc_const_unstable(feature = "const_fmt_arguments_new", issue = "none")]
355-
pub const fn new_v1(pieces: &'a [&'static str], args: &'a [ArgumentV1<'a>]) -> Arguments<'a> {
356-
if pieces.len() < args.len() || pieces.len() > args.len() + 1 {
357-
panic!("invalid args");
358-
}
359-
Arguments { pieces, fmt: None, args }
360-
}
361349

362350
/// This function is used to specify nonstandard formatting parameters.
363351
/// The `pieces` array must be at least as long as `fmt` to construct
364352
/// a valid Arguments structure. Also, any `Count` within `fmt` that is
365353
/// `CountIsParam` or `CountIsNextParam` has to point to an argument
366354
/// created with `argumentusize`. However, failing to do so doesn't cause
367355
/// unsafety, but will ignore invalid .
368-
#[cfg(not(bootstrap))]
369356
#[doc(hidden)]
370357
#[inline]
371358
#[unstable(feature = "fmt_internals", reason = "internal to format_args!", issue = "none")]
@@ -377,18 +364,6 @@ impl<'a> Arguments<'a> {
377364
) -> Arguments<'a> {
378365
Arguments { pieces, fmt: Some(fmt), args }
379366
}
380-
#[cfg(bootstrap)]
381-
#[doc(hidden)]
382-
#[inline]
383-
#[unstable(feature = "fmt_internals", reason = "internal to format_args!", issue = "none")]
384-
#[rustc_const_unstable(feature = "const_fmt_arguments_new", issue = "none")]
385-
pub const fn new_v1_formatted(
386-
pieces: &'a [&'static str],
387-
args: &'a [ArgumentV1<'a>],
388-
fmt: &'a [rt::v1::Argument],
389-
) -> Arguments<'a> {
390-
Arguments { pieces, fmt: Some(fmt), args }
391-
}
392367

393368
/// Estimates the length of the formatted text.
394369
///

library/core/src/hint.rs

+2-14
Original file line numberDiff line numberDiff line change
@@ -154,18 +154,6 @@ pub fn spin_loop() {
154154
/// [`std::convert::identity`]: crate::convert::identity
155155
#[inline]
156156
#[unstable(feature = "bench_black_box", issue = "64102")]
157-
#[cfg_attr(not(bootstrap), allow(unused_mut))]
158-
#[cfg_attr(bootstrap, allow(deprecated))]
159-
pub fn black_box<T>(mut dummy: T) -> T {
160-
#[cfg(bootstrap)]
161-
// SAFETY: the inline assembly is a no-op.
162-
unsafe {
163-
llvm_asm!("" : : "r"(&mut dummy) : "memory" : "volatile");
164-
dummy
165-
}
166-
167-
#[cfg(not(bootstrap))]
168-
{
169-
crate::intrinsics::black_box(dummy)
170-
}
157+
pub fn black_box<T>(dummy: T) -> T {
158+
crate::intrinsics::black_box(dummy)
171159
}

library/core/src/intrinsics.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1937,7 +1937,6 @@ extern "rust-intrinsic" {
19371937
/// See documentation of [`std::hint::black_box`] for details.
19381938
///
19391939
/// [`std::hint::black_box`]: crate::hint::black_box
1940-
#[cfg(not(bootstrap))]
19411940
pub fn black_box<T>(dummy: T) -> T;
19421941
}
19431942

library/core/src/lib.rs

-3
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@
6969
#![warn(missing_debug_implementations)]
7070
#![warn(missing_docs)]
7171
#![allow(explicit_outlives_requirements)]
72-
#![cfg_attr(bootstrap, allow(incomplete_features))] // if_let_guard
7372
//
7473
// Library features for const fns:
7574
#![feature(const_align_of_val)]
@@ -122,8 +121,6 @@
122121
#![feature(const_fn_floating_point_arithmetic)]
123122
#![feature(const_fn_fn_ptr_basics)]
124123
#![feature(const_fn_trait_bound)]
125-
#![cfg_attr(bootstrap, feature(const_fn_transmute))]
126-
#![cfg_attr(bootstrap, feature(const_fn_union))]
127124
#![feature(const_impl_trait)]
128125
#![feature(const_mut_refs)]
129126
#![feature(const_panic)]

library/core/src/macros/mod.rs

-11
Original file line numberDiff line numberDiff line change
@@ -842,7 +842,6 @@ pub(crate) mod builtin {
842842
/// This macro is used by the panic macros for the `const_panic` feature.
843843
///
844844
/// This macro will be removed once `format_args` is allowed in const contexts.
845-
#[cfg(not(bootstrap))]
846845
#[unstable(feature = "const_format_args", issue = "none")]
847846
#[allow_internal_unstable(fmt_internals, const_fmt_arguments_new)]
848847
#[rustc_builtin_macro]
@@ -852,16 +851,6 @@ pub(crate) mod builtin {
852851
($fmt:expr, $($args:tt)*) => {{ /* compiler built-in */ }};
853852
}
854853

855-
/// Same as `format_args`, but can be used in some const contexts.
856-
#[cfg(bootstrap)]
857-
#[unstable(feature = "const_format_args", issue = "none")]
858-
#[macro_export]
859-
macro_rules! const_format_args {
860-
($($t:tt)*) => {
861-
$crate::format_args!($($t)*)
862-
}
863-
}
864-
865854
/// Same as `format_args`, but adds a newline in the end.
866855
#[unstable(
867856
feature = "format_args_nl",

library/core/src/num/int_macros.rs

-2
Original file line numberDiff line numberDiff line change
@@ -2350,7 +2350,6 @@ macro_rules! int_impl {
23502350
#[rustc_const_stable(feature = "const_int_conversion", since = "1.44.0")]
23512351
// SAFETY: const sound because integers are plain old datatypes so we can always
23522352
// transmute them to arrays of bytes
2353-
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_fn_transmute))]
23542353
#[inline]
23552354
pub const fn to_ne_bytes(self) -> [u8; mem::size_of::<Self>()] {
23562355
// SAFETY: integers are plain old datatypes so we can always transmute them to
@@ -2456,7 +2455,6 @@ macro_rules! int_impl {
24562455
#[rustc_const_stable(feature = "const_int_conversion", since = "1.44.0")]
24572456
// SAFETY: const sound because integers are plain old datatypes so we can always
24582457
// transmute to them
2459-
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_fn_transmute))]
24602458
#[inline]
24612459
pub const fn from_ne_bytes(bytes: [u8; mem::size_of::<Self>()]) -> Self {
24622460
// SAFETY: integers are plain old datatypes so we can always transmute to them

library/core/src/num/uint_macros.rs

-2
Original file line numberDiff line numberDiff line change
@@ -2119,7 +2119,6 @@ macro_rules! uint_impl {
21192119
#[rustc_const_stable(feature = "const_int_conversion", since = "1.44.0")]
21202120
// SAFETY: const sound because integers are plain old datatypes so we can always
21212121
// transmute them to arrays of bytes
2122-
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_fn_transmute))]
21232122
#[inline]
21242123
pub const fn to_ne_bytes(self) -> [u8; mem::size_of::<Self>()] {
21252124
// SAFETY: integers are plain old datatypes so we can always transmute them to
@@ -2225,7 +2224,6 @@ macro_rules! uint_impl {
22252224
#[rustc_const_stable(feature = "const_int_conversion", since = "1.44.0")]
22262225
// SAFETY: const sound because integers are plain old datatypes so we can always
22272226
// transmute to them
2228-
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_fn_transmute))]
22292227
#[inline]
22302228
pub const fn from_ne_bytes(bytes: [u8; mem::size_of::<Self>()]) -> Self {
22312229
// SAFETY: integers are plain old datatypes so we can always transmute to them

library/core/src/panicking.rs

+2-8
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,8 @@ pub fn panic(expr: &'static str) -> ! {
4848
// Arguments::new_v1 may allow the compiler to omit Formatter::pad from the
4949
// output binary, saving up to a few kilobytes.
5050
panic_fmt(
51-
#[cfg(bootstrap)]
52-
fmt::Arguments::new_v1(&[expr], &[]),
53-
#[cfg(not(bootstrap))]
5451
// SAFETY: Arguments::new_v1 is safe with exactly one str and zero args
55-
unsafe {
56-
fmt::Arguments::new_v1(&[expr], &[])
57-
},
52+
unsafe { fmt::Arguments::new_v1(&[expr], &[]) },
5853
);
5954
}
6055

@@ -82,7 +77,7 @@ fn panic_bounds_check(index: usize, len: usize) -> ! {
8277
#[cfg_attr(not(feature = "panic_immediate_abort"), inline(never))]
8378
#[cfg_attr(feature = "panic_immediate_abort", inline)]
8479
#[track_caller]
85-
#[cfg_attr(not(bootstrap), lang = "panic_fmt")] // needed for const-evaluated panics
80+
#[lang = "panic_fmt"] // needed for const-evaluated panics
8681
pub fn panic_fmt(fmt: fmt::Arguments<'_>) -> ! {
8782
if cfg!(feature = "panic_immediate_abort") {
8883
super::intrinsics::abort()
@@ -102,7 +97,6 @@ pub fn panic_fmt(fmt: fmt::Arguments<'_>) -> ! {
10297
}
10398

10499
/// This function is used instead of panic_fmt in const eval.
105-
#[cfg(not(bootstrap))]
106100
#[lang = "const_panic_fmt"]
107101
pub const fn const_panic_fmt(fmt: fmt::Arguments<'_>) -> ! {
108102
if let Some(msg) = fmt.as_str() {

library/core/src/slice/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ impl<T> [T] {
9898
#[rustc_const_stable(feature = "const_slice_len", since = "1.39.0")]
9999
#[inline]
100100
// SAFETY: const sound because we transmute out the length field as a usize (which it must be)
101-
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_fn_union))]
102101
pub const fn len(&self) -> usize {
103102
// FIXME: Replace with `crate::ptr::metadata(self)` when that is const-stable.
104103
// As of this writing this causes a "Const-stable functions can only call other

library/core/src/str/converts.rs

-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ pub fn from_utf8_mut(v: &mut [u8]) -> Result<&mut str, Utf8Error> {
157157
#[inline]
158158
#[stable(feature = "rust1", since = "1.0.0")]
159159
#[rustc_const_stable(feature = "const_str_from_utf8_unchecked", since = "1.55.0")]
160-
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_fn_transmute))]
161160
pub const unsafe fn from_utf8_unchecked(v: &[u8]) -> &str {
162161
// SAFETY: the caller must guarantee that the bytes `v` are valid UTF-8.
163162
// Also relies on `&str` and `&[u8]` having the same layout.

library/core/src/str/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,6 @@ impl str {
231231
#[rustc_const_stable(feature = "str_as_bytes", since = "1.39.0")]
232232
#[inline(always)]
233233
#[allow(unused_attributes)]
234-
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_fn_transmute))]
235234
pub const fn as_bytes(&self) -> &[u8] {
236235
// SAFETY: const sound because we transmute two types with the same layout
237236
unsafe { mem::transmute(self) }

library/std/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,6 @@
247247
#![feature(const_cstr_unchecked)]
248248
#![feature(const_fn_floating_point_arithmetic)]
249249
#![feature(const_fn_fn_ptr_basics)]
250-
#![cfg_attr(bootstrap, feature(const_fn_transmute))]
251250
#![feature(const_format_args)]
252251
#![feature(const_io_structs)]
253252
#![feature(const_ip)]
@@ -265,7 +264,7 @@
265264
#![feature(doc_keyword)]
266265
#![feature(doc_masked)]
267266
#![feature(doc_notable_trait)]
268-
#![cfg_attr(not(bootstrap), feature(doc_primitive))]
267+
#![feature(doc_primitive)]
269268
#![feature(dropck_eyepatch)]
270269
#![feature(duration_checked_float)]
271270
#![feature(duration_constants)]

library/std/src/net/ip.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,6 @@ impl Ipv6Addr {
11661166
///
11671167
/// let addr = Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff);
11681168
/// ```
1169-
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_fn_transmute))]
11701169
#[rustc_const_stable(feature = "const_ipv6", since = "1.32.0")]
11711170
#[stable(feature = "rust1", since = "1.0.0")]
11721171
#[inline]
@@ -1228,7 +1227,6 @@ impl Ipv6Addr {
12281227
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).segments(),
12291228
/// [0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff]);
12301229
/// ```
1231-
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_fn_transmute))]
12321230
#[rustc_const_stable(feature = "const_ipv6", since = "1.50.0")]
12331231
#[stable(feature = "rust1", since = "1.0.0")]
12341232
#[inline]

library/std/src/panicking.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ pub fn panicking() -> bool {
450450
#[cfg_attr(not(feature = "panic_immediate_abort"), track_caller)]
451451
#[cfg_attr(not(feature = "panic_immediate_abort"), inline(never))]
452452
#[cfg_attr(feature = "panic_immediate_abort", inline)]
453-
#[cfg_attr(all(not(bootstrap), not(test)), lang = "begin_panic_fmt")]
453+
#[cfg_attr(not(test), lang = "begin_panic_fmt")]
454454
pub fn begin_panic_fmt(msg: &fmt::Arguments<'_>) -> ! {
455455
if cfg!(feature = "panic_immediate_abort") {
456456
intrinsics::abort()

library/std/src/primitive_docs.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -615,8 +615,7 @@ mod prim_pointer {}
615615
/// Starting in the 2021 edition, `array.into_iter()` uses `IntoIterator` normally to iterate
616616
/// by value, and `iter()` should be used to iterate by reference like previous editions.
617617
///
618-
#[cfg_attr(bootstrap, doc = "```rust,edition2021,ignore")]
619-
#[cfg_attr(not(bootstrap), doc = "```rust,edition2021")]
618+
/// ```rust,edition2021
620619
/// // Rust 2021:
621620
///
622621
/// let array: [i32; 3] = [0; 3];

0 commit comments

Comments
 (0)