2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20011029-1.c
blob3b2bcdf2e9d35d34451ebedd5a7bcac9f7bba040
1 void foo (void *) __attribute__ ((noreturn));
3 void
4 bar (void *x)
6 if (__builtin_setjmp (x))
7 return;
8 foo (x);