summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr17301-1.c
blob: 5fd22588cd50443964fa6cae00adf8c695144d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Invalid use of __builtin_stdarg_start should not cause an ICE.  Bug
   17301.  */
/* { dg-do compile } */
/* { dg-options "" } */

int
write_format (char *format, ...)
{
  __builtin_va_list p;
  __builtin_stdarg_start (p); /* { dg-error "too few arguments to function 'va_start'" } */
}