Skip to content

Commit 51b0665

Browse files
committed
Fix typos caused during rebase
1 parent b2fe254 commit 51b0665

File tree

3 files changed

+1698
-2
lines changed

3 files changed

+1698
-2
lines changed

src/librustc_codegen_ssa/mir/block.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
362362
}
363363
};
364364
helper.maybe_sideeffect(self.mir, &mut bx, &[target]);
365-
helper.do_call(self, &mut bx, fn_ty, drop_fn, args,
365+
helper.do_call(self, &mut bx, fn_abi, drop_fn, args,
366366
Some((ReturnDest::Nothing, target)),
367367
unwind);
368368
}
@@ -779,7 +779,7 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
779779
if let Some((_, target)) = destination.as_ref() {
780780
helper.maybe_sideeffect(self.mir, &mut bx, &[*target]);
781781
}
782-
helper.do_call(self, &mut bx, fn_ty, fn_ptr, &llargs,
782+
helper.do_call(self, &mut bx, fn_abi, fn_ptr, &llargs,
783783
destination.as_ref().map(|&(_, target)| (ret_dest, target)),
784784
cleanup);
785785
}

0 commit comments

Comments
 (0)