174298Ssos/* PR middle-end/52074 */
2230132Suqs
374298Ssosstruct S { const char *d, *e; } __attribute__((packed));
474298Ssos
574298Ssosvoid
674298Ssosfoo (const char **p, struct S *q)
774298Ssos{
874298Ssos  *p = "abcdef";
974298Ssos  q->d = "ghijk";
1074298Ssos}
1174298Ssos