* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr58970-2.c
blob3103b31e179e2ba436270d868220219cff509551
1 /* PR middle-end/58970 */
3 struct T { char a : 8; char b : 1; };
4 struct S { char x; struct T t[1]; };
6 void
7 foo (int x, struct S *s)
9 if (x == -1)
10 s->t[x].b = 0;