1 2 3 4 5 6 7 8 9 10
/* 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"; }