Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d981633

Browse files
committedFeb 25, 2022
Auto merge of rust-lang#94290 - Mark-Simulacrum:bump-bootstrap, r=pietroalbini
Bump bootstrap to 1.60 This bumps the bootstrap compiler to 1.60 and cleans up cfgs and Span's rustc_pass_by_value (enabled by the bootstrap bump).
2 parents 6cbc6c3 + 3c62f2f commit d981633

File tree

63 files changed

+429
-503
lines changed

Some content is hidden

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

63 files changed

+429
-503
lines changed
 

‎compiler/rustc_ast_lowering/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#![feature(let_else)]
3636
#![feature(never_type)]
3737
#![recursion_limit = "256"]
38-
#![cfg_attr(not(bootstrap), allow(rustc::potential_query_instability))]
38+
#![allow(rustc::potential_query_instability)]
3939

4040
use rustc_ast::token::{self, Token};
4141
use rustc_ast::tokenstream::{CanSynthesizeMissingTokens, TokenStream, TokenTree};

‎compiler/rustc_ast_passes/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#![feature(box_patterns)]
99
#![feature(let_else)]
1010
#![recursion_limit = "256"]
11-
#![cfg_attr(not(bootstrap), allow(rustc::potential_query_instability))]
11+
#![allow(rustc::potential_query_instability)]
1212

1313
pub mod ast_validation;
1414
pub mod feature_gate;

0 commit comments

Comments
 (0)
Please sign in to comment.