blob: 92a2096f055670cb8d27a79b53a755265114f649 [file] [log] [blame]
/* PR middle-end/52074 */
struct S { const char *d, *e; } __attribute__((packed));
void
foo (const char **p, struct S *q)
{
*p = "abcdef";
q->d = "ghijk";
}