modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/20011029-1.c (about)

     1  /* { dg-require-effective-target indirect_jumps } */
     2  
     3  void foo (void *) __attribute__ ((noreturn));
     4  
     5  void
     6  bar (void *x)
     7  {
     8    if (__builtin_setjmp (x))
     9      return;
    10    foo (x);
    11  }