Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / compile / struct-non-lval-3.c
blob3020194cae07d8fa0e929611c3fcbdbf1ced6ad8
1 /* Bug c/17855, using assignment for non-lvalue. */
2 struct foo {char x, y, z[2];};
3 struct foo p, q;
4 void bar(int baz)
6 (p = q).z[baz] = 1;