Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / missing-field-init-2.c
blob581eb30d89b306e0bab6b3ca98af2739bf6a20bd
1 /* { dg-do compile } */
2 /* { dg-options "-Wmissing-field-initializers -std=c99" } */
4 struct s { int a, b, c; };
5 struct s s1 = { 1, 2, 3 };
6 struct s s2 = { 1, 2 }; /* { dg-warning "(missing initializer)|(near initialization)" } */
7 struct s s3[] = { { 1, 2 }, { 4, 5 } }; /* { dg-warning "(missing initializer)|(near initialization)" } */
8 struct s s4[] = { 1, 2, 3, 4, 5 }; /* { dg-warning "(missing initializer)|(near initialization)" } */
9 struct s s5[] = { 1, 2, 3, 4, 5, 6 };
10 /* Designated initializers produce no warning. */
11 struct s s6 = { .a = 1 }; /* { dg-bogus "missing initializer" } */