1 2 3 4 5 6 7 8 9 10 11 12 13
/* PR target/38123 */ #include <stdarg.h> struct S { int i; double d; }; struct S test (char *x, va_list ap) { struct S s; s = va_arg (ap, struct S); return s; }