rt_gccstream/gcc/testsuite/gcc.c-torture/compile/packed-1.c

15 lines
109 B
C

struct s
{
int e;
} x;
struct rbuf
{
struct s *p __attribute__ ((packed));
} *b;
f ()
{
b->p = &x;
}