Skip to content

Document that ccall convention doesn't support varargs

Ben Gamari requested to merge wip/T18854 into master

We do not support foreign "C" imports of varargs functions. While this works on amd64, in general the platform's calling convention may need more type information that our Cmm representation can currently provide. For instance, this is the case with Darwin's AArch64 calling convention. Document this fact in the users guide and fix T5423 which makes use of a disallowed foreign import.

Closes #18854 (closed).

Merge request reports