Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gcc.dg/format/ms_no-exargs-1.c @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
rev | line source |
---|---|
111 | 1 /* Test for warnings for extra format arguments being disabled by |
2 -Wno-format-extra-args. */ | |
3 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */ | |
4 /* { dg-do compile { target { *-*-mingw* } } } */ | |
5 /* { dg-options "-std=gnu99 -Wformat -Wno-format-extra-args" } */ | |
6 | |
7 #define USE_SYSTEM_FORMATS | |
8 #include "format.h" | |
9 | |
10 void | |
11 foo (int i) | |
12 { | |
13 printf ("foo", i); | |
14 printf ("%1$d", i, i); | |
15 } |