mirror of
https://github.com/EmbarkStudios/rust-gpu.git
synced 2024-11-21 22:34:34 +00:00
Actually use FnAbi in the call 🙄
This commit is contained in:
parent
6f325acec0
commit
ccf920d54f
@ -154,7 +154,13 @@ impl<'tcx> CodegenCx<'tcx> {
|
||||
);
|
||||
}
|
||||
bx.set_span(span);
|
||||
bx.call(entry_func.ty, None, entry_func, &call_args, None);
|
||||
bx.call(
|
||||
entry_func.ty,
|
||||
Some(entry_fn_abi),
|
||||
entry_func,
|
||||
&call_args,
|
||||
None,
|
||||
);
|
||||
bx.ret_void();
|
||||
|
||||
let stub_fn_id = stub_fn.def_cx(self);
|
||||
|
Loading…
Reference in New Issue
Block a user