Skip to content

Commit e1d7dec

Browse files
committedSep 26, 2022
Auto merge of #102051 - pietroalbini:pa-bootstrap-update, r=Mark-Simulacrum
Update bootstrap compiler to 1.65.0 This PR updates the bootstrap compiler to Rust 1.65.0, removing the various `cfg(bootstrap)`s. r? `@Mark-Simulacrum`
2 parents 84946fe + f7b0c85 commit e1d7dec

File tree

93 files changed

+385
-1678
lines changed

Some content is hidden

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

93 files changed

+385
-1678
lines changed
 

‎compiler/rustc_ast/src/ast.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3046,7 +3046,6 @@ mod size_asserts {
30463046
static_assert_size!(Block, 48);
30473047
static_assert_size!(Expr, 104);
30483048
static_assert_size!(ExprKind, 72);
3049-
#[cfg(not(bootstrap))]
30503049
static_assert_size!(Fn, 184);
30513050
static_assert_size!(ForeignItem, 96);
30523051
static_assert_size!(ForeignItemKind, 24);

‎compiler/rustc_ast/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
#![feature(const_default_impls)]
1414
#![feature(const_trait_impl)]
1515
#![feature(if_let_guard)]
16-
#![cfg_attr(bootstrap, feature(label_break_value))]
1716
#![feature(let_chains)]
18-
#![cfg_attr(bootstrap, feature(let_else))]
1917
#![feature(min_specialization)]
2018
#![feature(negative_impls)]
2119
#![feature(slice_internals)]

0 commit comments

Comments
 (0)