modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/packed-1.c (about)

     1  struct s
     2  {
     3    int e;
     4  } x;
     5  
     6  struct rbuf
     7  {
     8    struct s *p __attribute__ ((packed));
     9  } *b;
    10  
    11  f ()
    12  {
    13    b->p = &x;
    14  }