* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20011029-1.c
blob538b4e4f4bea9fe3646777af3a9e59b6b2841834
1 /* { dg-require-effective-target indirect_jumps } */
3 void foo (void *) __attribute__ ((noreturn));
5 void
6 bar (void *x)
8 if (__builtin_setjmp (x))
9 return;
10 foo (x);