Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / format / xopen-3.c
blob5f78d77c5a116769a996263245c50341843ff33a
1 /* Test for warnings for $ operand numbers after ordinary formats.
2 Bug c/15444 from james-gcc-bugzilla-501qll3d at and dot org. */
3 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu99 -Wformat" } */
7 #include "format.h"
9 void
10 foo (int i)
12 printf ("%d%2$d", i); /* { dg-warning "used after format" "mixing $ and non-$ formats" } */
13 printf ("%d%*1$d", i, i); /* { dg-warning "used after format" "mixing $ and non-$ formats" } */
14 printf ("%d%.*1$d", i, i); /* { dg-warning "used after format" "mixing $ and non-$ formats" } */