aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20011029-1.c
blob: 538b4e4f4bea9fe3646777af3a9e59b6b2841834 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-require-effective-target indirect_jumps } */

void foo (void *) __attribute__ ((noreturn));

void
bar (void *x)
{
  if (__builtin_setjmp (x))
    return;
  foo (x);
}