OSDN Git Service

PR rtl-optimization/42889
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / format / ms_va-1.c
1 /* Test for strange warning in format checking.  */
2 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
3 /* { dg-do compile { target { *-*-mingw* } } } */
4 /* { dg-options "-Wformat" } */
5
6 #define USE_SYSTEM_FORMATS
7 #include "format.h"
8
9 void
10 foo (void *p)
11 {
12   printf ("%d", p); /* { dg-bogus "va_list" "wrong type in format warning" } */
13   /* { dg-warning "format" "format error" { target *-*-* } 12 } */
14 }