blob: 9b226aeab9b49dab623b75945f2270914a0f8f39 [file] [log] [blame]
short x1 = 17;
struct
{
short i __attribute__ ((packed));
} t;
f ()
{
t.i = x1;
if (t.i != 17)
abort ();
}
main ()
{
f ();
exit (0);
}