File tree 1 file changed +7
-2
lines changed
compiler/rustc_middle/src/ty
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -617,12 +617,17 @@ impl<'tcx> Instance<'tcx> {
617
617
v : EarlyBinder < T > ,
618
618
) -> Result < T , NormalizationError < ' tcx > >
619
619
where
620
- T : TypeFoldable < TyCtxt < ' tcx > > + Clone ,
620
+ T : TypeFoldable < TyCtxt < ' tcx > > ,
621
621
{
622
622
if let Some ( args) = self . args_for_mir_body ( ) {
623
623
tcx. try_instantiate_and_normalize_erasing_regions ( args, param_env, v)
624
624
} else {
625
- tcx. try_normalize_erasing_regions ( param_env, v. skip_binder ( ) )
625
+ // We're using `instantiate_identity` as e.g.
626
+ // `FnPtrShim` is separately generated for every
627
+ // instantiation of the `FnDef`, so the MIR body
628
+ // is already instantiated. Any generic parameters it
629
+ // contains are generic parameters from the caller.
630
+ tcx. try_normalize_erasing_regions ( param_env, v. instantiate_identity ( ) )
626
631
}
627
632
}
628
633
You can’t perform that action at this time.
0 commit comments