Mercurial > hg > CbC > CbC_gcc
comparison gcc/testsuite/gcc.dg/format/ms_va-1.c @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 (2017-10-27) |
parents | |
children |
comparison
equal
deleted
inserted
replaced
68:561a7518be6b | 111:04ced10e8804 |
---|---|
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 *-*-* } .-1 } */ | |
14 } |