We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 159293c commit f61b14dCopy full SHA for f61b14d
src/abi/mod.rs
@@ -30,7 +30,7 @@ fn clif_sig_from_fn_abi<'tcx>(
30
let inputs = fn_abi.args.iter().flat_map(|arg_abi| arg_abi.get_abi_param(tcx).into_iter());
31
32
let (return_ptr, returns) = fn_abi.ret.get_abi_return(tcx);
33
- // Sometimes the first param is an pointer to the place where the return value needs to be stored.
+ // Sometimes the first param is a pointer to the place where the return value needs to be stored.
34
let params: Vec<_> = return_ptr.into_iter().chain(inputs).collect();
35
36
Signature { params, returns, call_conv }
0 commit comments