Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / gnu-cond-expr-2.c
blob53234dc26ca27ad427ceb0ed1c35ec78f4a410d8
1 /* Test diagnostic for GNU extension: omitting middle term of
2 conditional expression. Test with -pedantic. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu99 -pedantic" } */
7 int a, b, c;
9 void
10 f (void)
12 c = (++a ? : b); /* { dg-warning "warning: ISO C forbids omitting the middle term of a \\?: expression" } */