Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 46c59bb

Browse files
committed
Auto merge of rust-lang#100324 - Mark-Simulacrum:bootstrap-bump, r=jyn514
Bump bootstrap compiler to 1.64 r? `@jyn514` perhaps?
2 parents f22819b + 1c40ef7 commit 46c59bb

File tree

50 files changed

+417
-735
lines changed

Some content is hidden

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

50 files changed

+417
-735
lines changed

compiler/rustc_ast/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
#![feature(const_trait_impl)]
1515
#![feature(if_let_guard)]
1616
#![feature(label_break_value)]
17-
#![cfg_attr(bootstrap, feature(let_chains))]
1817
#![feature(min_specialization)]
1918
#![feature(negative_impls)]
2019
#![feature(slice_internals)]

compiler/rustc_ast_lowering/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
//! in the HIR, especially for multiple identifiers.
3232
3333
#![feature(box_patterns)]
34-
#![cfg_attr(bootstrap, feature(let_chains))]
3534
#![feature(let_else)]
3635
#![feature(never_type)]
3736
#![recursion_limit = "256"]

compiler/rustc_ast_passes/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
#![feature(box_patterns)]
99
#![feature(if_let_guard)]
1010
#![feature(iter_is_partitioned)]
11-
#![cfg_attr(bootstrap, feature(let_chains))]
1211
#![feature(let_else)]
1312
#![recursion_limit = "256"]
1413

compiler/rustc_attr/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
//! The goal is to move the definition of `MetaItem` and things that don't need to be in `syntax`
55
//! to this crate.
66
7-
#![cfg_attr(bootstrap, feature(let_chains))]
87
#![feature(let_else)]
98

109
#[macro_use]

compiler/rustc_borrowck/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
33
#![allow(rustc::potential_query_instability)]
44
#![feature(box_patterns)]
5-
#![cfg_attr(bootstrap, feature(let_chains))]
65
#![feature(let_else)]
76
#![feature(min_specialization)]
87
#![feature(never_type)]

compiler/rustc_builtin_macros/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
#![feature(decl_macro)]
99
#![feature(if_let_guard)]
1010
#![feature(is_sorted)]
11-
#![cfg_attr(bootstrap, feature(let_chains))]
1211
#![feature(let_else)]
1312
#![feature(proc_macro_internals)]
1413
#![feature(proc_macro_quote)]

compiler/rustc_codegen_llvm/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
77
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
88
#![feature(hash_raw_entry)]
9-
#![cfg_attr(bootstrap, feature(let_chains))]
109
#![feature(let_else)]
1110
#![feature(extern_types)]
1211
#![feature(once_cell)]

compiler/rustc_const_eval/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ Rust MIR: a lowered representation of Rust.
99
#![feature(control_flow_enum)]
1010
#![feature(decl_macro)]
1111
#![feature(exact_size_is_empty)]
12-
#![cfg_attr(bootstrap, feature(let_chains))]
1312
#![feature(let_else)]
1413
#![feature(map_try_insert)]
1514
#![feature(min_specialization)]

compiler/rustc_error_messages/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![cfg_attr(bootstrap, feature(let_chains))]
21
#![feature(once_cell)]
32
#![feature(rustc_attrs)]
43
#![feature(type_alias_impl_trait)]

compiler/rustc_errors/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
66
#![feature(drain_filter)]
77
#![feature(if_let_guard)]
8-
#![cfg_attr(bootstrap, feature(let_chains))]
98
#![feature(adt_const_params)]
109
#![feature(let_else)]
1110
#![feature(never_type)]

0 commit comments

Comments
 (0)