modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.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  }