[RFA] Fix csky and c6x build failures
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr79908.c
blobe2d6920a4cda00d34a56a2acdefbb6398ba8f81b
1 /* { dg-do compile } */
3 /* Used to fail in the stdarg pass before fix for PR79908. */
5 typedef __builtin_va_list __gnuc_va_list;
6 typedef __gnuc_va_list va_list;
8 void testva (int n, ...)
10 va_list ap;
11 _Complex int i = __builtin_va_arg (ap, _Complex int);