We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2fe254 commit 51b0665Copy full SHA for 51b0665
src/librustc_codegen_ssa/mir/block.rs
@@ -362,7 +362,7 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
362
}
363
};
364
helper.maybe_sideeffect(self.mir, &mut bx, &[target]);
365
- helper.do_call(self, &mut bx, fn_ty, drop_fn, args,
+ helper.do_call(self, &mut bx, fn_abi, drop_fn, args,
366
Some((ReturnDest::Nothing, target)),
367
unwind);
368
@@ -779,7 +779,7 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
779
if let Some((_, target)) = destination.as_ref() {
780
helper.maybe_sideeffect(self.mir, &mut bx, &[*target]);
781
782
- helper.do_call(self, &mut bx, fn_ty, fn_ptr, &llargs,
+ helper.do_call(self, &mut bx, fn_abi, fn_ptr, &llargs,
783
destination.as_ref().map(|&(_, target)| (ret_dest, target)),
784
cleanup);
785
0 commit comments