OSDN Git Service

* gcc.c-torture/compile/20080625-1.c: Skip for M32C.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr16566-2.c
1 /* ICE with flexible arrays in non-lvalue structures.  Bug 16566
2    (comment #5).  */
3
4 struct A
5 {
6     int i;
7     int x[];
8 };
9
10 int foo(struct A a)
11
12     return (a,a).x[0];
13 }