921e5a0eb4
From-SVN: r14840
14 lines
202 B
C
14 lines
202 B
C
typedef struct
|
|
{
|
|
short a __attribute__ ((aligned (2),packed));
|
|
short *ap[2] __attribute__ ((aligned (2),packed));
|
|
} A;
|
|
|
|
main ()
|
|
{
|
|
short i, j = 1;
|
|
A a, *ap = &a;
|
|
ap->ap[j] = &i;
|
|
exit (0);
|
|
}
|