Skip to content

Commit a366aa6

Browse files
authored
Rollup merge of rust-lang#68040 - sinkuu:unused, r=petrochenkov
Cleanup
2 parents 2bade5d + f443ae6 commit a366aa6

File tree

10 files changed

+1
-34
lines changed

10 files changed

+1
-34
lines changed

Cargo.lock

-10
Original file line numberDiff line numberDiff line change
@@ -3079,8 +3079,6 @@ dependencies = [
30793079
"graphviz",
30803080
"jobserver",
30813081
"log",
3082-
"measureme",
3083-
"num_cpus",
30843082
"parking_lot",
30853083
"polonius-engine",
30863084
"rustc-rayon",
@@ -3090,7 +3088,6 @@ dependencies = [
30903088
"rustc_error_codes",
30913089
"rustc_errors",
30923090
"rustc_feature",
3093-
"rustc_fs_util",
30943091
"rustc_hir",
30953092
"rustc_index",
30963093
"rustc_macros",
@@ -3278,7 +3275,6 @@ dependencies = [
32783275
"jemalloc-sys",
32793276
"rustc_codegen_ssa",
32803277
"rustc_driver",
3281-
"rustc_target",
32823278
]
32833279

32843280
[[package]]
@@ -3409,7 +3405,6 @@ dependencies = [
34093405
"rustc_codegen_utils",
34103406
"rustc_data_structures",
34113407
"rustc_errors",
3412-
"rustc_expand",
34133408
"rustc_feature",
34143409
"rustc_fs_util",
34153410
"rustc_hir",
@@ -3497,7 +3492,6 @@ name = "rustc_driver"
34973492
version = "0.0.0"
34983493
dependencies = [
34993494
"env_logger 0.7.1",
3500-
"graphviz",
35013495
"lazy_static 1.3.0",
35023496
"log",
35033497
"rustc",
@@ -3513,7 +3507,6 @@ dependencies = [
35133507
"rustc_mir",
35143508
"rustc_parse",
35153509
"rustc_plugin_impl",
3516-
"rustc_resolve",
35173510
"rustc_save_analysis",
35183511
"rustc_span",
35193512
"rustc_target",
@@ -3660,7 +3653,6 @@ dependencies = [
36603653
"log",
36613654
"rustc",
36623655
"rustc_data_structures",
3663-
"rustc_error_codes",
36643656
"rustc_feature",
36653657
"rustc_hir",
36663658
"rustc_index",
@@ -4464,8 +4456,6 @@ dependencies = [
44644456
name = "syntax"
44654457
version = "0.0.0"
44664458
dependencies = [
4467-
"bitflags",
4468-
"lazy_static 1.3.0",
44694459
"log",
44704460
"rustc_data_structures",
44714461
"rustc_error_codes",

src/librustc/Cargo.toml

-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ bitflags = "1.2.1"
1515
fmt_macros = { path = "../libfmt_macros" }
1616
graphviz = { path = "../libgraphviz" }
1717
jobserver = "0.1"
18-
num_cpus = "1.0"
1918
scoped-tls = "1.0"
2019
log = { version = "0.4", features = ["release_max_level_info", "std"] }
2120
rustc-rayon = "0.3.0"
@@ -36,8 +35,6 @@ backtrace = "0.3.40"
3635
parking_lot = "0.9"
3736
byteorder = { version = "1.3" }
3837
chalk-engine = { version = "0.9.0", default-features=false }
39-
rustc_fs_util = { path = "../librustc_fs_util" }
4038
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
41-
measureme = "0.5"
4239
rustc_error_codes = { path = "../librustc_error_codes" }
4340
rustc_session = { path = "../librustc_session" }

src/librustc/ty/mod.rs

-7
Original file line numberDiff line numberDiff line change
@@ -808,13 +808,6 @@ pub struct UpvarBorrow<'tcx> {
808808
pub type UpvarListMap = FxHashMap<DefId, FxIndexMap<hir::HirId, UpvarId>>;
809809
pub type UpvarCaptureMap<'tcx> = FxHashMap<UpvarId, UpvarCapture<'tcx>>;
810810

811-
#[derive(Copy, Clone, TypeFoldable)]
812-
pub struct ClosureUpvar<'tcx> {
813-
pub res: Res,
814-
pub span: Span,
815-
pub ty: Ty<'tcx>,
816-
}
817-
818811
#[derive(Clone, Copy, PartialEq, Eq)]
819812
pub enum IntVarValue {
820813
IntType(ast::IntTy),

src/librustc/ty/structural_impls.rs

-6
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,6 @@ impl fmt::Debug for ty::AdtDef {
4545
}
4646
}
4747

48-
impl fmt::Debug for ty::ClosureUpvar<'tcx> {
49-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
50-
write!(f, "ClosureUpvar({:?},{:?})", self.res, self.ty)
51-
}
52-
}
53-
5448
impl fmt::Debug for ty::UpvarId {
5549
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
5650
let name = ty::tls::with(|tcx| tcx.hir().name(self.var_path.hir_id));

src/librustc_codegen_llvm/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,4 @@ rustc_session = { path = "../librustc_session" }
3131
rustc_target = { path = "../librustc_target" }
3232
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
3333
syntax = { path = "../libsyntax" }
34-
rustc_expand = { path = "../librustc_expand" }
3534
rustc_span = { path = "../librustc_span" }

src/librustc_driver/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ path = "lib.rs"
1010
crate-type = ["dylib"]
1111

1212
[dependencies]
13-
graphviz = { path = "../libgraphviz" }
1413
lazy_static = "1.0"
1514
log = "0.4"
1615
env_logger = { version = "0.7", default-features = false }
@@ -30,7 +29,6 @@ rustc_codegen_utils = { path = "../librustc_codegen_utils" }
3029
rustc_error_codes = { path = "../librustc_error_codes" }
3130
rustc_interface = { path = "../librustc_interface" }
3231
rustc_serialize = { path = "../libserialize", package = "serialize" }
33-
rustc_resolve = { path = "../librustc_resolve" }
3432
syntax = { path = "../libsyntax" }
3533
rustc_span = { path = "../librustc_span" }
3634

src/librustc_lint/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@ rustc_span = { path = "../librustc_span" }
1919
rustc_data_structures = { path = "../librustc_data_structures" }
2020
rustc_feature = { path = "../librustc_feature" }
2121
rustc_index = { path = "../librustc_index" }
22-
rustc_error_codes = { path = "../librustc_error_codes" }
2322
rustc_session = { path = "../librustc_session" }

src/librustc_typeck/check/upvar.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
212212
}
213213
}
214214

215-
// Returns a list of `ClosureUpvar`s for each upvar.
215+
// Returns a list of `Ty`s for each upvar.
216216
fn final_upvar_tys(&self, closure_id: hir::HirId) -> Vec<Ty<'tcx>> {
217217
// Presently an unboxed closure type cannot "escape" out of a
218218
// function, so we will only encounter ones that originated in the

src/libsyntax/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@ path = "lib.rs"
1010
doctest = false
1111

1212
[dependencies]
13-
bitflags = "1.2.1"
1413
rustc_serialize = { path = "../libserialize", package = "serialize" }
1514
log = "0.4"
1615
scoped-tls = "1.0"
17-
lazy_static = "1.0.0"
1816
rustc_span = { path = "../librustc_span" }
1917
errors = { path = "../librustc_errors", package = "rustc_errors" }
2018
rustc_data_structures = { path = "../librustc_data_structures" }

src/rustc/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ name = "rustc_binary"
99
path = "rustc.rs"
1010

1111
[dependencies]
12-
rustc_target = { path = "../librustc_target" }
1312
rustc_driver = { path = "../librustc_driver" }
1413

1514
# Make sure rustc_codegen_ssa ends up in the sysroot, because this

0 commit comments

Comments
 (0)