OSDN Git Service

Backported from mainline
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20000517-1.c
1 void test2 (int*, int, int, int);
2
3 void test ()
4 {
5   int l;
6
7   test2 (0, 0, 0, 0);
8   test2 (&l, 0, 0, 0);
9 }