aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20000517-1.c
blob: 903e61eefad1faaf0dc683b1279180ad3460d62e (plain)
1
2
3
4
5
6
7
8
9
void test2 (int*, int, int, int);

void test ()
{
  int l;

  test2 (0, 0, 0, 0);
  test2 (&l, 0, 0, 0);
}