8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/packed-1.c

20 lines
152 B
C
Raw Normal View History

1997-08-19 03:34:40 -04:00
short x1 = 17;
struct
{
short i __attribute__ ((packed));
} t;
f ()
{
t.i = x1;
if (t.i != 17)
abort ();
}
main ()
{
f ();
exit (0);
}