Skip to content

Commit adff1b1

Browse files
committed
WIP pacify the mercilous tidy (call to normalize_erasing_late_bound_regions)
1 parent 8f15989 commit adff1b1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/librustc_trans/mir/block.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,10 @@ impl<'a, 'tcx> FunctionCx<'a, 'tcx> {
455455
};
456456
let def = instance.map(|i| i.def);
457457
let sig = callee.layout.ty.fn_sig(bx.tcx());
458-
let sig = bx.tcx().normalize_erasing_late_bound_regions(ty::ParamEnv::reveal_all(), &sig);
458+
let sig = bx.tcx().normalize_erasing_late_bound_regions(
459+
ty::ParamEnv::reveal_all(),
460+
&sig,
461+
);
459462
let abi = sig.abi;
460463

461464
// Handle intrinsics old trans wants Expr's for, ourselves.

0 commit comments

Comments
 (0)