Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.c-torture / compile / 20060823-1.c
blobfbce7fe941f206c877a83793ee9002f8f42618fd
1 /* PR middle-end/28683 */
3 extern void foo (int *);
5 struct A
7 int f;
8 };
10 struct A *
11 test (struct A *r)
13 int *f = &r->f;
14 static int i = 0;
15 if (!i && !((void *) f == (void *) r))
16 foo (&i);
17 return r;