modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/pr52074.c (about)

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