This prevents functions accessing varargs from being inlined if they
have the alwaysinline attribute.
Details
Details
Diff Detail
Diff Detail
Event Timeline
Comment Actions
(The original patch didn't make it into 6.0, so we don't need to cherry-pick this, I think.)
Do we need to check for musttail calls, since they can also access varargs?
Comment Actions
Ah yes, the original patch went in just after the branch.
Do we need to check for musttail calls, since they can also access varargs?
I do not think so: when inlining a function containing a musttail call, InlineFunction should forward the varargs appropriately.
Comment Actions
LGTM.
I do not think so: when inlining a function containing a musttail call, InlineFunction should forward the varargs appropriately.
Right.