blob: 3b2bcdf2e9d35d34451ebedd5a7bcac9f7bba040 [file] [log] [blame]
void foo (void *) __attribute__ ((noreturn));
void
bar (void *x)
{
if (__builtin_setjmp (x))
return;
foo (x);
}