Merged revisions 143552,143554,143557,143560,143562,143564-143567,143570-143573,14357...
[official-gcc.git] / gcc / testsuite / g++.dg / warn / miss-format-6.C
blobf78dbdfa1fd6eddc3eee192b9f689ab43f11fdd8
1 /* Test warnings for missing format attributes on function pointers.  */
2 /* Origin: Kaveh Ghazi <ghazi@caip.rutgers.edu> */
3 /* { dg-do compile } */
4 /* { dg-options "-Wmissing-format-attribute" } */
5 /* { dg-options "-Wmissing-format-attribute -Wno-abi" { target arm_eabi } } */
7 #include <stdarg.h>
9 typedef void (*noattr_t) (const char *, ...);
10 typedef noattr_t __attribute__ ((__format__(__printf__, 1, 2))) attr_t;
12 typedef void (*vnoattr_t) (const char *, va_list);
13 typedef vnoattr_t __attribute__ ((__format__(__printf__, 1, 0))) vattr_t;
15 extern void foo1 (noattr_t);
16 extern void foo2 (attr_t);
17 extern void foo3 (vnoattr_t);
18 extern void foo4 (vattr_t);
20 void
21 foo (noattr_t na, attr_t a, vnoattr_t vna, vattr_t va)
23   foo1 (na);
24   foo1 (a); /* { dg-warning "candidate" "parameter passing warning" } */
25   foo2 (na);
26   foo2 (a);
27   
28   foo3 (vna);
29   foo3 (va); /* { dg-warning "candidate" "parameter passing warning" } */
30   foo4 (vna);
31   foo4 (va);