Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.c-torture / execute / 20051012-1.c
blobf12f42913cc2f86fbf57cfbab118bb1d04a0788b
1 extern void abort (void);
3 struct type
5 int *a;
7 int b:16;
8 unsigned int p:9;
9 } t;
11 unsigned int
12 foo ()
14 return t.p;
17 int
18 main (void)
20 t.p = 8;
21 if (foo (t) != 8)
22 abort ();
23 return 0;