(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
20040726-1.c
       1  /* PR rtl-optimization/16643 */
       2  /* { dg-skip-if "too many arguments in function call" { bpf-*-* } } */
       3  
       4  void foo (int a, int b, int c, int d, int e, int *f)
       5  {
       6    if (a == 0)
       7      if (b == 0)
       8        if (c == 0)
       9  	if (d == 0)
      10  	  {
      11  	    *f = e;
      12  	    return;
      13  	  }
      14    *f = e;
      15    return;
      16  }