Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / compile / 20010226-1.c
blobc06be53dc525740ef52b017bd480bc776cc3d646
1 void f1 (void *);
2 void f3 (void *, void (*)(void *));
3 void f2 (void *);
5 int foo (void *a, int b)
7 if (!b)
9 f1 (a);
10 return 1;
12 if (b)
14 void bar (void *c)
16 if (c == a)
17 f2 (c);
19 f3 (a, bar);
21 return 0;