Skip to content

Commit c4bafaf

Browse files
committed
Remove in_band_lifetimes for rustc_passes
1 parent 69ac533 commit c4bafaf

13 files changed

+33
-34
lines changed

compiler/rustc_passes/src/check_attr.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ struct CheckAttrVisitor<'tcx> {
5858
tcx: TyCtxt<'tcx>,
5959
}
6060

61-
impl CheckAttrVisitor<'tcx> {
61+
impl CheckAttrVisitor<'_> {
6262
/// Checks any attribute.
6363
fn check_attributes(
6464
&self,
@@ -382,7 +382,7 @@ impl CheckAttrVisitor<'tcx> {
382382
&self,
383383
hir_id: HirId,
384384
attr_span: &Span,
385-
attrs: &'hir [Attribute],
385+
attrs: &[Attribute],
386386
span: &Span,
387387
target: Target,
388388
) -> bool {
@@ -1481,7 +1481,7 @@ impl CheckAttrVisitor<'tcx> {
14811481
/// Checks if the `#[repr]` attributes on `item` are valid.
14821482
fn check_repr(
14831483
&self,
1484-
attrs: &'hir [Attribute],
1484+
attrs: &[Attribute],
14851485
span: &Span,
14861486
target: Target,
14871487
item: Option<ItemLike<'_>>,
@@ -1663,7 +1663,7 @@ impl CheckAttrVisitor<'tcx> {
16631663
}
16641664
}
16651665

1666-
fn check_used(&self, attrs: &'hir [Attribute], target: Target) {
1666+
fn check_used(&self, attrs: &[Attribute], target: Target) {
16671667
for attr in attrs {
16681668
if attr.has_name(sym::used) && target != Target::Static {
16691669
self.tcx
@@ -1842,7 +1842,7 @@ impl CheckAttrVisitor<'tcx> {
18421842
}
18431843
}
18441844

1845-
impl Visitor<'tcx> for CheckAttrVisitor<'tcx> {
1845+
impl<'tcx> Visitor<'tcx> for CheckAttrVisitor<'tcx> {
18461846
type Map = Map<'tcx>;
18471847

18481848
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {

compiler/rustc_passes/src/check_const.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ impl<'tcx> CheckConstTraitVisitor<'tcx> {
7878
impl<'tcx> hir::itemlikevisit::ItemLikeVisitor<'tcx> for CheckConstTraitVisitor<'tcx> {
7979
/// check for const trait impls, and errors if the impl uses provided/default functions
8080
/// of the trait being implemented; as those provided functions can be non-const.
81-
fn visit_item(&mut self, item: &'hir hir::Item<'hir>) {
81+
fn visit_item<'hir>(&mut self, item: &'hir hir::Item<'hir>) {
8282
let _: Option<_> = try {
8383
if let hir::ItemKind::Impl(ref imp) = item.kind {
8484
if let hir::Constness::Const = imp.constness {
@@ -134,11 +134,11 @@ impl<'tcx> hir::itemlikevisit::ItemLikeVisitor<'tcx> for CheckConstTraitVisitor<
134134
};
135135
}
136136

137-
fn visit_trait_item(&mut self, _: &'hir hir::TraitItem<'hir>) {}
137+
fn visit_trait_item<'hir>(&mut self, _: &'hir hir::TraitItem<'hir>) {}
138138

139-
fn visit_impl_item(&mut self, _: &'hir hir::ImplItem<'hir>) {}
139+
fn visit_impl_item<'hir>(&mut self, _: &'hir hir::ImplItem<'hir>) {}
140140

141-
fn visit_foreign_item(&mut self, _: &'hir hir::ForeignItem<'hir>) {}
141+
fn visit_foreign_item<'hir>(&mut self, _: &'hir hir::ForeignItem<'hir>) {}
142142
}
143143

144144
#[derive(Copy, Clone)]

compiler/rustc_passes/src/dead.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ impl<'tcx> MarkSymbolVisitor<'tcx> {
150150

151151
#[allow(dead_code)] // FIXME(81658): should be used + lint reinstated after #83171 relands.
152152
fn check_for_self_assign(&mut self, assign: &'tcx hir::Expr<'tcx>) {
153-
fn check_for_self_assign_helper(
153+
fn check_for_self_assign_helper<'tcx>(
154154
tcx: TyCtxt<'tcx>,
155155
typeck_results: &'tcx ty::TypeckResults<'tcx>,
156156
lhs: &'tcx hir::Expr<'tcx>,
@@ -600,7 +600,7 @@ struct DeadVisitor<'tcx> {
600600
live_symbols: FxHashSet<LocalDefId>,
601601
}
602602

603-
impl DeadVisitor<'tcx> {
603+
impl<'tcx> DeadVisitor<'tcx> {
604604
fn should_warn_about_item(&mut self, item: &hir::Item<'_>) -> bool {
605605
let should_warn = matches!(
606606
item.kind,
@@ -672,7 +672,7 @@ impl DeadVisitor<'tcx> {
672672
}
673673
}
674674

675-
impl Visitor<'tcx> for DeadVisitor<'tcx> {
675+
impl<'tcx> Visitor<'tcx> for DeadVisitor<'tcx> {
676676
type Map = Map<'tcx>;
677677

678678
/// Walk nested items in place so that we don't report dead-code

compiler/rustc_passes/src/intrinsicck.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ fn unpack_option_like<'tcx>(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>) -> Ty<'tcx> {
6262
ty
6363
}
6464

65-
impl ExprVisitor<'tcx> {
65+
impl<'tcx> ExprVisitor<'tcx> {
6666
fn def_id_is_transmute(&self, def_id: DefId) -> bool {
6767
self.tcx.fn_sig(def_id).abi() == RustIntrinsic
6868
&& self.tcx.item_name(def_id) == sym::transmute
@@ -487,7 +487,7 @@ impl ExprVisitor<'tcx> {
487487
}
488488
}
489489

490-
impl Visitor<'tcx> for ItemVisitor<'tcx> {
490+
impl<'tcx> Visitor<'tcx> for ItemVisitor<'tcx> {
491491
type Map = intravisit::ErasedMap<'tcx>;
492492

493493
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
@@ -504,7 +504,7 @@ impl Visitor<'tcx> for ItemVisitor<'tcx> {
504504
}
505505
}
506506

507-
impl Visitor<'tcx> for ExprVisitor<'tcx> {
507+
impl<'tcx> Visitor<'tcx> for ExprVisitor<'tcx> {
508508
type Map = intravisit::ErasedMap<'tcx>;
509509

510510
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {

compiler/rustc_passes/src/lang_items.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ struct LanguageItemCollector<'tcx> {
2828
tcx: TyCtxt<'tcx>,
2929
}
3030

31-
impl ItemLikeVisitor<'v> for LanguageItemCollector<'tcx> {
31+
impl<'v, 'tcx> ItemLikeVisitor<'v> for LanguageItemCollector<'tcx> {
3232
fn visit_item(&mut self, item: &hir::Item<'_>) {
3333
self.check_for_lang(Target::from_item(item), item.hir_id());
3434

@@ -50,7 +50,7 @@ impl ItemLikeVisitor<'v> for LanguageItemCollector<'tcx> {
5050
fn visit_foreign_item(&mut self, _: &hir::ForeignItem<'_>) {}
5151
}
5252

53-
impl LanguageItemCollector<'tcx> {
53+
impl<'tcx> LanguageItemCollector<'tcx> {
5454
fn new(tcx: TyCtxt<'tcx>) -> LanguageItemCollector<'tcx> {
5555
LanguageItemCollector { tcx, items: LanguageItems::new() }
5656
}

compiler/rustc_passes/src/layout_test.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ struct LayoutTest<'tcx> {
2020
tcx: TyCtxt<'tcx>,
2121
}
2222

23-
impl ItemLikeVisitor<'tcx> for LayoutTest<'tcx> {
23+
impl<'tcx> ItemLikeVisitor<'tcx> for LayoutTest<'tcx> {
2424
fn visit_item(&mut self, item: &'tcx hir::Item<'tcx>) {
2525
match item.kind {
2626
ItemKind::TyAlias(..)
@@ -42,7 +42,7 @@ impl ItemLikeVisitor<'tcx> for LayoutTest<'tcx> {
4242
fn visit_foreign_item(&mut self, _: &'tcx hir::ForeignItem<'tcx>) {}
4343
}
4444

45-
impl LayoutTest<'tcx> {
45+
impl<'tcx> LayoutTest<'tcx> {
4646
fn dump_layout_of(&self, item_def_id: LocalDefId, item: &hir::Item<'tcx>, attr: &Attribute) {
4747
let tcx = self.tcx;
4848
let param_env = self.tcx.param_env(item_def_id);
@@ -114,7 +114,7 @@ struct UnwrapLayoutCx<'tcx> {
114114
param_env: ParamEnv<'tcx>,
115115
}
116116

117-
impl LayoutOfHelpers<'tcx> for UnwrapLayoutCx<'tcx> {
117+
impl<'tcx> LayoutOfHelpers<'tcx> for UnwrapLayoutCx<'tcx> {
118118
type LayoutOfResult = TyAndLayout<'tcx>;
119119

120120
fn handle_layout_err(&self, err: LayoutError<'tcx>, span: Span, ty: Ty<'tcx>) -> ! {
@@ -127,19 +127,19 @@ impl LayoutOfHelpers<'tcx> for UnwrapLayoutCx<'tcx> {
127127
}
128128
}
129129

130-
impl HasTyCtxt<'tcx> for UnwrapLayoutCx<'tcx> {
130+
impl<'tcx> HasTyCtxt<'tcx> for UnwrapLayoutCx<'tcx> {
131131
fn tcx(&self) -> TyCtxt<'tcx> {
132132
self.tcx
133133
}
134134
}
135135

136-
impl HasParamEnv<'tcx> for UnwrapLayoutCx<'tcx> {
136+
impl<'tcx> HasParamEnv<'tcx> for UnwrapLayoutCx<'tcx> {
137137
fn param_env(&self) -> ParamEnv<'tcx> {
138138
self.param_env
139139
}
140140
}
141141

142-
impl HasDataLayout for UnwrapLayoutCx<'tcx> {
142+
impl<'tcx> HasDataLayout for UnwrapLayoutCx<'tcx> {
143143
fn data_layout(&self) -> &TargetDataLayout {
144144
self.tcx.data_layout()
145145
}

compiler/rustc_passes/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
77
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
88
#![feature(crate_visibility_modifier)]
9-
#![feature(in_band_lifetimes)]
109
#![feature(map_try_insert)]
1110
#![feature(min_specialization)]
1211
#![feature(nll)]

compiler/rustc_passes/src/lib_features.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub struct LibFeatureCollector<'tcx> {
2323
lib_features: LibFeatures,
2424
}
2525

26-
impl LibFeatureCollector<'tcx> {
26+
impl<'tcx> LibFeatureCollector<'tcx> {
2727
fn new(tcx: TyCtxt<'tcx>) -> LibFeatureCollector<'tcx> {
2828
LibFeatureCollector { tcx, lib_features: new_lib_features() }
2929
}
@@ -110,7 +110,7 @@ impl LibFeatureCollector<'tcx> {
110110
}
111111
}
112112

113-
impl Visitor<'tcx> for LibFeatureCollector<'tcx> {
113+
impl<'tcx> Visitor<'tcx> for LibFeatureCollector<'tcx> {
114114
type Map = Map<'tcx>;
115115

116116
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {

compiler/rustc_passes/src/liveness.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ struct IrMaps<'tcx> {
198198
lnks: IndexVec<LiveNode, LiveNodeKind>,
199199
}
200200

201-
impl IrMaps<'tcx> {
201+
impl<'tcx> IrMaps<'tcx> {
202202
fn new(tcx: TyCtxt<'tcx>) -> IrMaps<'tcx> {
203203
IrMaps {
204204
tcx,

compiler/rustc_passes/src/naked_functions.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ impl<'tcx> Visitor<'tcx> for CheckNakedFunctions<'tcx> {
3737

3838
fn visit_fn(
3939
&mut self,
40-
fk: FnKind<'v>,
40+
fk: FnKind<'_>,
4141
_fd: &'tcx hir::FnDecl<'tcx>,
4242
body_id: hir::BodyId,
4343
span: Span,

compiler/rustc_passes/src/reachable.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use rustc_target::spec::abi::Abi;
2222
// Returns true if the given item must be inlined because it may be
2323
// monomorphized or it was marked with `#[inline]`. This will only return
2424
// true for functions.
25-
fn item_might_be_inlined(tcx: TyCtxt<'tcx>, item: &hir::Item<'_>, attrs: &CodegenFnAttrs) -> bool {
25+
fn item_might_be_inlined(tcx: TyCtxt<'_>, item: &hir::Item<'_>, attrs: &CodegenFnAttrs) -> bool {
2626
if attrs.requests_inline() {
2727
return true;
2828
}

compiler/rustc_passes/src/stability.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ impl<'tcx> Visitor<'tcx> for MissingStabilityAnnotations<'tcx> {
655655
// stable (assuming they have not inherited instability from their parent).
656656
}
657657

658-
fn stability_index(tcx: TyCtxt<'tcx>, (): ()) -> Index<'tcx> {
658+
fn stability_index<'tcx>(tcx: TyCtxt<'tcx>, (): ()) -> Index<'tcx> {
659659
let is_staged_api =
660660
tcx.sess.opts.debugging_opts.force_unstable_if_unmarked || tcx.features().staged_api;
661661
let mut staged_api = FxHashMap::default();
@@ -737,7 +737,7 @@ struct Checker<'tcx> {
737737
tcx: TyCtxt<'tcx>,
738738
}
739739

740-
impl Visitor<'tcx> for Checker<'tcx> {
740+
impl<'tcx> Visitor<'tcx> for Checker<'tcx> {
741741
type Map = Map<'tcx>;
742742

743743
/// Because stability levels are scoped lexically, we want to walk
@@ -866,7 +866,7 @@ struct CheckTraitImplStable<'tcx> {
866866
fully_stable: bool,
867867
}
868868

869-
impl Visitor<'tcx> for CheckTraitImplStable<'tcx> {
869+
impl<'tcx> Visitor<'tcx> for CheckTraitImplStable<'tcx> {
870870
type Map = Map<'tcx>;
871871

872872
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {

compiler/rustc_passes/src/upvars.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ struct LocalCollector {
4242
locals: FxHashSet<HirId>,
4343
}
4444

45-
impl Visitor<'tcx> for LocalCollector {
45+
impl<'tcx> Visitor<'tcx> for LocalCollector {
4646
type Map = intravisit::ErasedMap<'tcx>;
4747

4848
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
@@ -71,7 +71,7 @@ impl CaptureCollector<'_, '_> {
7171
}
7272
}
7373

74-
impl Visitor<'tcx> for CaptureCollector<'a, 'tcx> {
74+
impl<'tcx> Visitor<'tcx> for CaptureCollector<'_, 'tcx> {
7575
type Map = intravisit::ErasedMap<'tcx>;
7676

7777
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {

0 commit comments

Comments
 (0)