Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / compile / 20010503-1.c
blob75005f456c3eed2238b0cecec9b86ea238ee596f
1 void f1 (double);
2 void f2 (int);
4 void
5 foo (int type, double xx)
7 if (type)
8 f1 (xx);
9 else
10 f2 (type);
13 void
14 bar (int type)
16 foo (type, 1.0);