2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / packed-1.c
blob9b226aeab9b49dab623b75945f2270914a0f8f39
1 short x1 = 17;
3 struct
5 short i __attribute__ ((packed));
6 } t;
8 f ()
10 t.i = x1;
11 if (t.i != 17)
12 abort ();
15 main ()
17 f ();
18 exit (0);