1 /* PR middle-end/52074 */
2 
3 struct S { const char *d, *e; } __attribute__((packed));
4 
5 void
foo(const char ** p,struct S * q)6 foo (const char **p, struct S *q)
7 {
8   *p = "abcdef";
9   q->d = "ghijk";
10 }
11