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

void foo (char *format, ...)
{
  __builtin_stdarg_start (); /* { dg-error "too few arguments to function '__builtin_stdarg_start'" } */
}