* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr52074.c
blob92a2096f055670cb8d27a79b53a755265114f649
1 /* PR middle-end/52074 */
3 struct S { const char *d, *e; } __attribute__((packed));
5 void
6 foo (const char **p, struct S *q)
8 *p = "abcdef";
9 q->d = "ghijk";