1 /* PR middle-end/86122 */
2 /* { dg-skip-if "exceeds eBPF stack limit" { bpf-*-* } } */
3 
4 _Complex int
foo(_Complex int x)5 foo (_Complex int x)
6 {
7   x += __INT_MAX__;
8   x += 1;
9   return x;
10 }
11 
12 _Complex int
bar(_Complex int x)13 bar (_Complex int x)
14 {
15   x += 1;
16   x += __INT_MAX__;
17   return x;
18 }
19