Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8308031: Linkers should reject unpromoted variadic parameters #14225

Closed
wants to merge 14 commits into from
6 changes: 3 additions & 3 deletions src/java.base/share/classes/java/lang/foreign/Linker.java
Original file line number Diff line number Diff line change
@@ -368,10 +368,10 @@
* Variadic functions are C functions which can accept a variable number and type of arguments. They are declared:
* <ol>
* <li>With a trailing ellipsis ({@code ...}) at the end of the formal parameter list, such as: {@code void foo(int x, ...);}</li>
* <li>With an empty formal parameter list, such as: {@code void foo();}</li>
* <li>With an empty formal parameter list, called a prototype-less function, such as: {@code void foo();}</li>
* </ol>
* The latter is often called a <em>prototype-less</em> function as well. The arguments passed in place of the ellipsis,
* or the arguments passed to a prototype-less function are called <em>variadic arguments</em>.
* The arguments passed in place of the ellipsis, or the arguments passed to a prototype-less function are called
* <em>variadic arguments</em>.
* <p>
* The native linker does not support linking variadic functions in a way where it is possible to pass an arbitrary set
* of variadic arguments to the resulting method handle, since the linker needs to know the memory layouts of all the arguments