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