Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / format / miss-2.c
blob241b22d2c06fb8ca686e6bf5408ec46a0bcf8889
1 /* Test for warnings for missing format attributes. Don't warn if no
2 relevant parameters for a format attribute; see c/1017. */
3 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu99 -Wmissing-format-attribute" } */
7 #include "format.h"
9 void
10 foo (int i, ...)
12 va_list ap;
13 va_start (ap, i);
14 vprintf ("Foo %s bar %s", ap); /* { dg-bogus "candidate" "bogus printf attribute warning" } */
15 va_end (ap);