File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
rustc_hir_analysis/src/collect Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ fn associated_type_bounds<'tcx>(
5959/// impl trait it isn't possible to write a suitable predicate on the
6060/// containing function and for type-alias impl trait we don't have a backwards
6161/// compatibility issue.
62- #[ instrument( level = "trace" , skip( tcx) , ret ) ]
62+ #[ instrument( level = "trace" , skip( tcx, item_ty ) ) ]
6363fn opaque_type_bounds < ' tcx > (
6464 tcx : TyCtxt < ' tcx > ,
6565 opaque_def_id : LocalDefId ,
Original file line number Diff line number Diff line change @@ -620,7 +620,9 @@ macro_rules! define_queries {
620620 tcx,
621621 {
622622 let ret = call_provider!( [ $( $modifiers) * ] [ tcx, $name, key] ) ;
623- tracing:: trace!( ?ret) ;
623+ rustc_middle:: ty:: print:: with_reduced_queries!( {
624+ tracing:: trace!( ?ret) ;
625+ } ) ;
624626 ret
625627 }
626628 )
You can’t perform that action at this time.
0 commit comments