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 bba4be6

Browse files
committedSep 6, 2021
Move rustc_mir::transform to rustc_mir_transform.
1 parent 31a61cc commit bba4be6

Some content is hidden

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

64 files changed

+775
-698
lines changed
 

‎Cargo.lock

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3928,6 +3928,7 @@ dependencies = [
39283928
"rustc_middle",
39293929
"rustc_mir",
39303930
"rustc_mir_build",
3931+
"rustc_mir_transform",
39313932
"rustc_parse",
39323933
"rustc_passes",
39333934
"rustc_plugin_impl",
@@ -4071,10 +4072,8 @@ dependencies = [
40714072
name = "rustc_mir"
40724073
version = "0.0.0"
40734074
dependencies = [
4074-
"coverage_test_macros",
40754075
"either",
40764076
"gsgdt",
4077-
"itertools 0.9.0",
40784077
"polonius-engine",
40794078
"regex",
40804079
"rustc_apfloat",
@@ -4120,6 +4119,29 @@ dependencies = [
41204119
"tracing",
41214120
]
41224121

4122+
[[package]]
4123+
name = "rustc_mir_transform"
4124+
version = "0.0.0"
4125+
dependencies = [
4126+
"coverage_test_macros",
4127+
"itertools 0.9.0",
4128+
"rustc_ast",
4129+
"rustc_attr",
4130+
"rustc_data_structures",
4131+
"rustc_errors",
4132+
"rustc_hir",
4133+
"rustc_index",
4134+
"rustc_middle",
4135+
"rustc_mir",
4136+
"rustc_serialize",
4137+
"rustc_session",
4138+
"rustc_span",
4139+
"rustc_target",
4140+
"rustc_trait_selection",
4141+
"smallvec",
4142+
"tracing",
4143+
]
4144+
41234145
[[package]]
41244146
name = "rustc_parse"
41254147
version = "0.0.0"

‎compiler/rustc_interface/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ rustc_hir = { path = "../rustc_hir" }
3434
rustc_metadata = { path = "../rustc_metadata" }
3535
rustc_mir = { path = "../rustc_mir" }
3636
rustc_mir_build = { path = "../rustc_mir_build" }
37+
rustc_mir_transform = { path = "../rustc_mir_transform" }
3738
rustc_passes = { path = "../rustc_passes" }
3839
rustc_typeck = { path = "../rustc_typeck" }
3940
rustc_lint = { path = "../rustc_lint" }

0 commit comments

Comments
 (0)
Please sign in to comment.