* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr38123.c
blobb36ad118f4508717b8b82662b570e6d086f9cde1
1 /* PR target/38123 */
3 #include <stdarg.h>
5 struct S { int i; double d; };
7 struct S
8 test (char *x, va_list ap)
10 struct S s;
11 s = va_arg (ap, struct S);
12 return s;