Create embedded-5_0-branch branch for development on ARM embedded cores.
[official-gcc.git] / embedded-5_0-branch / gcc / testsuite / gcc.dg / gnu-cond-expr-1.c
blob0f0bb2142286db3f42c9a94f84c8bc00a613047d
1 /* Test diagnostic for GNU extension: omitting middle term of
2 conditional expression. Test with no special options. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu99" } */
7 int a, b, c;
9 void
10 f (void)
12 c = (++a ? : b);