blob: aa9cab49786d3dc99ae9aa2b95871f99a4902f38 [file] [log] [blame]
struct s
{
int e;
} x;
struct rbuf
{
struct s *p __attribute__ ((packed));
} *b;
void
f (void)
{
b->p = &x;
}