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

Commit 7d3e036

Browse files
committed
Auto merge of rust-lang#96720 - JohnTitor:rollup-9jaaekr, r=JohnTitor
Rollup of 7 pull requests Successful merges: - rust-lang#96603 (Enable full revision in const generics ui tests) - rust-lang#96616 (Relax memory ordering used in `min_stack`) - rust-lang#96619 (Relax memory ordering used in SameMutexCheck) - rust-lang#96628 (Stabilize `bool::then_some`) - rust-lang#96658 (Move callback to the () => {} syntax.) - rust-lang#96677 (Add more tests for label-break-value) - rust-lang#96697 (Enable tracing for all queries) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents bdcb6a9 + ade1232 commit 7d3e036

File tree

47 files changed

+625
-214
lines changed

Some content is hidden

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

47 files changed

+625
-214
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4245,6 +4245,7 @@ dependencies = [
42454245
"rustc_serialize",
42464246
"rustc_session",
42474247
"rustc_span",
4248+
"tracing",
42484249
]
42494250

42504251
[[package]]

compiler/rustc_ast_pretty/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![feature(bool_to_option)]
21
#![feature(crate_visibility_modifier)]
32
#![feature(box_patterns)]
43
#![recursion_limit = "256"]

compiler/rustc_borrowck/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//! This query borrow-checks the MIR to (further) ensure it is not broken.
22
33
#![allow(rustc::potential_query_instability)]
4-
#![feature(bool_to_option)]
54
#![feature(box_patterns)]
65
#![feature(crate_visibility_modifier)]
76
#![feature(let_chains)]

compiler/rustc_builtin_macros/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
55
#![feature(array_windows)]
66
#![feature(box_patterns)]
7-
#![feature(bool_to_option)]
87
#![feature(crate_visibility_modifier)]
98
#![feature(decl_macro)]
109
#![feature(is_sorted)]

compiler/rustc_codegen_llvm/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
//! This API is completely unstable and subject to change.
66
77
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
8-
#![feature(bool_to_option)]
98
#![feature(crate_visibility_modifier)]
109
#![feature(let_chains)]
1110
#![feature(let_else)]

compiler/rustc_codegen_ssa/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
2-
#![feature(bool_to_option)]
32
#![feature(box_patterns)]
43
#![feature(try_blocks)]
54
#![feature(let_else)]

compiler/rustc_const_eval/src/lib.rs

Lines changed: 0 additions & 1 deletion
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-
#![feature(bool_to_option)]
98
#![feature(box_patterns)]
109
#![feature(control_flow_enum)]
1110
#![feature(crate_visibility_modifier)]

compiler/rustc_data_structures/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#![feature(array_windows)]
1111
#![feature(associated_type_bounds)]
1212
#![feature(auto_traits)]
13-
#![feature(bool_to_option)]
1413
#![feature(control_flow_enum)]
1514
#![feature(core_intrinsics)]
1615
#![feature(extend_one)]

compiler/rustc_infer/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
1515
#![allow(rustc::potential_query_instability)]
1616
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
17-
#![feature(bool_to_option)]
1817
#![feature(box_patterns)]
1918
#![feature(control_flow_enum)]
2019
#![cfg_attr(bootstrap, feature(derive_default_enum))]

compiler/rustc_interface/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![feature(bool_to_option)]
21
#![feature(box_patterns)]
32
#![feature(let_else)]
43
#![feature(internal_output_capture)]

0 commit comments

Comments
 (0)