OSDN Git Service

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