./:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20001123-1.c
blob59534480db26be743673dc08036c748120ae306a
2 typedef __builtin_va_list __gnuc_va_list;
3 typedef __gnuc_va_list va_list;
5 struct X { int y; };
7 void func(va_list va)
9 char* a = __builtin_va_arg(va, char**)[0];
10 int b = __builtin_va_arg(va, struct X*)->y;