OSDN Git Service

* gcc.dg/Warray-bounds.c: XFAIL test on 32-bit hppa targets.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / gnu-cond-expr-1.c
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" } */
6
7 int a, b, c;
8
9 void
10 f (void)
11 {
12   c = (++a ? : b);
13 }