* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr16566-2.c
blob73cf05a0d5dd259516c56cd9020384c01d6df4d1
1 /* ICE with flexible arrays in non-lvalue structures. Bug 16566
2 (comment #5). */
3 /* { dg-options "-Wno-psabi" { target { { i?86-*-* x86_64-*-* } && { ! { ia32 } } } } } */
5 struct A
7 int i;
8 int x[];
9 };
11 int foo(struct A a)
13 return (a,a).x[0];