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 bb8a08f

Browse files
committedAug 27, 2022
Auto merge of rust-lang#101064 - compiler-errors:rollup-fwm5m5f, r=compiler-errors
Rollup of 9 pull requests Successful merges: - rust-lang#100724 (Migrate ast lowering to session diagnostic) - rust-lang#100735 (Migrate `rustc_ty_utils` to `SessionDiagnostic`) - rust-lang#100738 (Diagnostics migr const eval) - rust-lang#100744 (Migrate rustc_mir_dataflow to diagnostic structs) - rust-lang#100776 (Migrate `rustc_lint` errors to `SessionDiagnostic`) - rust-lang#100817 (sugg: suggest the usage of boolean value when there is a typo in the keyword) - rust-lang#100836 (Migrate `rustc_attr` crate diagnostics) - rust-lang#100890 (Migrate rustc_driver to SessionDiagnostic) - rust-lang#100900 (on `region_errors.rs`) Failed merges: - rust-lang#100831 (Migrate `symbol_mangling` module to new diagnostics structs) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 2b443a8 + 96ceadd commit bb8a08f

File tree

51 files changed

+2445
-927
lines changed

Some content is hidden

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

51 files changed

+2445
-927
lines changed
 

‎Cargo.lock

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3574,6 +3574,7 @@ dependencies = [
35743574
"rustc_errors",
35753575
"rustc_hir",
35763576
"rustc_index",
3577+
"rustc_macros",
35773578
"rustc_middle",
35783579
"rustc_query_system",
35793580
"rustc_session",
@@ -3819,6 +3820,7 @@ dependencies = [
38193820
"rustc_interface",
38203821
"rustc_lint",
38213822
"rustc_log",
3823+
"rustc_macros",
38223824
"rustc_metadata",
38233825
"rustc_middle",
38243826
"rustc_parse",
@@ -4212,11 +4214,14 @@ dependencies = [
42124214
"regex",
42134215
"rustc_ast",
42144216
"rustc_data_structures",
4217+
"rustc_errors",
42154218
"rustc_graphviz",
42164219
"rustc_hir",
42174220
"rustc_index",
4221+
"rustc_macros",
42184222
"rustc_middle",
42194223
"rustc_serialize",
4224+
"rustc_session",
42204225
"rustc_span",
42214226
"rustc_target",
42224227
"smallvec",
@@ -4600,6 +4605,7 @@ dependencies = [
46004605
"rustc_hir",
46014606
"rustc_index",
46024607
"rustc_infer",
4608+
"rustc_macros",
46034609
"rustc_middle",
46044610
"rustc_session",
46054611
"rustc_span",

‎compiler/rustc_ast_lowering/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ rustc_target = { path = "../rustc_target" }
1515
rustc_data_structures = { path = "../rustc_data_structures" }
1616
rustc_index = { path = "../rustc_index" }
1717
rustc_middle = { path = "../rustc_middle" }
18+
rustc_macros = { path = "../rustc_macros" }
1819
rustc_query_system = { path = "../rustc_query_system" }
1920
rustc_span = { path = "../rustc_span" }
2021
rustc_errors = { path = "../rustc_errors" }

0 commit comments

Comments
 (0)
Please sign in to comment.