summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr17301-2.c
blob: e89b9538623e03b65f1f2af7451c3c8a3bbcd160 (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 "error: too few arguments to function '__builtin_stdarg_start'" } */
}