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