2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / packed-1.c
blob709fc3cb10236cb9aed1e2a57c7a47f757b47f2f
1 struct s
3 int e;
4 } x;
6 struct rbuf
8 struct s *p __attribute__ ((packed));
9 } *b;
11 f ()
13 b->p = &x;