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" } */
       6  
       7  #include "format.h"
       8  
       9  void
      10  foo (int i, ...)
      11  {
      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);
      16  }