(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
complex-6.c
       1  /* PR tree-opt/35737 */
       2  /* { dg-require-effective-target indirect_jumps } */
       3  
       4  long buf[10];
       5  
       6  int foo()
       7  {
       8    __complex__ int i = 0;
       9  
      10    if (__builtin_setjmp(buf))
      11    {
      12      i = 1;
      13      bar();
      14    }
      15  
      16    return i == 0;
      17  }
      18