@@ -167,8 +167,8 @@ fn dump_matched_mir_node<'tcx, F>(
167
167
168
168
/// Returns the file basename portion (without extension) of a filename path
169
169
/// where we should dump a MIR representation output files.
170
- fn dump_file_basename (
171
- tcx : TyCtxt < ' _ > ,
170
+ fn dump_file_basename < ' tcx > (
171
+ tcx : TyCtxt < ' tcx > ,
172
172
pass_num : Option < & dyn Display > ,
173
173
pass_name : & str ,
174
174
disambiguator : & dyn Display ,
@@ -251,8 +251,8 @@ fn create_dump_file_with_basename(
251
251
/// bit of MIR-related data. Used by `mir-dump`, but also by other
252
252
/// bits of code (e.g., NLL inference) that dump graphviz data or
253
253
/// other things, and hence takes the extension as an argument.
254
- pub fn create_dump_file (
255
- tcx : TyCtxt < ' _ > ,
254
+ pub fn create_dump_file < ' tcx > (
255
+ tcx : TyCtxt < ' tcx > ,
256
256
extension : & str ,
257
257
pass_num : Option < & dyn Display > ,
258
258
pass_name : & str ,
@@ -419,15 +419,15 @@ struct ExtraComments<'tcx> {
419
419
comments : Vec < String > ,
420
420
}
421
421
422
- impl ExtraComments < ' tcx > {
422
+ impl < ' tcx > ExtraComments < ' tcx > {
423
423
fn push ( & mut self , lines : & str ) {
424
424
for line in lines. split ( '\n' ) {
425
425
self . comments . push ( line. to_string ( ) ) ;
426
426
}
427
427
}
428
428
}
429
429
430
- fn use_verbose ( ty : & & TyS < ' tcx > , fn_def : bool ) -> bool {
430
+ fn use_verbose < ' tcx > ( ty : & & TyS < ' tcx > , fn_def : bool ) -> bool {
431
431
match ty. kind ( ) {
432
432
ty:: Int ( _) | ty:: Uint ( _) | ty:: Bool | ty:: Char | ty:: Float ( _) => false ,
433
433
// Unit type
@@ -439,7 +439,7 @@ fn use_verbose(ty: &&TyS<'tcx>, fn_def: bool) -> bool {
439
439
}
440
440
}
441
441
442
- impl Visitor < ' tcx > for ExtraComments < ' tcx > {
442
+ impl < ' tcx > Visitor < ' tcx > for ExtraComments < ' tcx > {
443
443
fn visit_constant ( & mut self , constant : & Constant < ' tcx > , location : Location ) {
444
444
self . super_constant ( constant, location) ;
445
445
let Constant { span, user_ty, literal } = constant;
@@ -762,7 +762,7 @@ pub fn write_allocations<'tcx>(
762
762
/// After the hex dump, an ascii dump follows, replacing all unprintable characters (control
763
763
/// characters or characters whose value is larger than 127) with a `.`
764
764
/// This also prints relocations adequately.
765
- pub fn display_allocation < Tag , Extra > (
765
+ pub fn display_allocation < ' a , ' tcx , Tag , Extra > (
766
766
tcx : TyCtxt < ' tcx > ,
767
767
alloc : & ' a Allocation < Tag , Extra > ,
768
768
) -> RenderAllocation < ' a , ' tcx , Tag , Extra > {
@@ -775,7 +775,9 @@ pub struct RenderAllocation<'a, 'tcx, Tag, Extra> {
775
775
alloc : & ' a Allocation < Tag , Extra > ,
776
776
}
777
777
778
- impl < Tag : Provenance , Extra > std:: fmt:: Display for RenderAllocation < ' a , ' tcx , Tag , Extra > {
778
+ impl < ' a , ' tcx , Tag : Provenance , Extra > std:: fmt:: Display
779
+ for RenderAllocation < ' a , ' tcx , Tag , Extra >
780
+ {
779
781
fn fmt ( & self , w : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
780
782
let RenderAllocation { tcx, alloc } = * self ;
781
783
write ! ( w, "size: {}, align: {})" , alloc. size( ) . bytes( ) , alloc. align. bytes( ) ) ?;
@@ -818,7 +820,7 @@ fn write_allocation_newline(
818
820
/// The `prefix` argument allows callers to add an arbitrary prefix before each line (even if there
819
821
/// is only one line). Note that your prefix should contain a trailing space as the lines are
820
822
/// printed directly after it.
821
- fn write_allocation_bytes < Tag : Provenance , Extra > (
823
+ fn write_allocation_bytes < ' tcx , Tag : Provenance , Extra > (
822
824
tcx : TyCtxt < ' tcx > ,
823
825
alloc : & Allocation < Tag , Extra > ,
824
826
w : & mut dyn std:: fmt:: Write ,
0 commit comments