Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / compile / pr16566-2.c
blobc0036f0fc6458fc6586e68a477550c569797bd3a
1 /* ICE with flexible arrays in non-lvalue structures. Bug 16566
2 (comment #5). */
4 struct A
6 int i;
7 int x[];
8 };
10 int foo(struct A a)
12 return (a,a).x[0];