1 /* PR rtl-optimization/16643 */ 2 /* { dg-skip-if "too many arguments in function call" { bpf-*-* } } */ 3 foo(int a,int b,int c,int d,int e,int * f)4void 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 } 17