about summary refs log tree commit diff
path: root/src/test/ui/c-variadic/variadic-ffi-2.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-9/+0
2022-10-23Cleanup message and bless testsJack Huey-1/+1
2022-10-23Enable varargs support for calling conventions other than C or cdeclSoveu-3/+3
This patch makes it possible to use varargs for calling conventions, which are either based on C (like efiapi) or C is based on them (for example sysv64 and win64).
2019-02-27Rename variadic to c_variadicDan Robertson-2/+2
Function signatures with the `variadic` member set are actually C-variadic functions. Make this a little more explicit by renaming the `variadic` boolean value, `c_variadic`.
2019-02-27Support defining C compatible variadic functionsDan Robertson-0/+9
Add support for defining C compatible variadic functions in unsafe rust with extern "C".