1
Fork 0

cleanup some skip_binder -> subst_identity

This commit is contained in:
Kyle Matsuda 2023-06-02 11:07:28 -06:00
parent e6d4725c76
commit 57cbe25006
3 changed files with 5 additions and 5 deletions

View file

@ -586,7 +586,7 @@ impl<'tcx> Instance<'tcx> {
if let Some(substs) = self.substs_for_mir_body() {
v.subst(tcx, substs)
} else {
v.skip_binder()
v.subst_identity()
}
}

View file

@ -647,7 +647,7 @@ fn build_call_shim<'tcx>(
let mut sig = if let Some(sig_substs) = sig_substs {
sig.subst(tcx, &sig_substs)
} else {
sig.skip_binder()
sig.subst_identity()
};
if let CallKind::Indirect(fnty) = call_kind {