New testcase for PR84
[oota-llvm.git] / test / CFrontend / 2003-08-18-SigSetJmp.c
1
2 #include <setjmp.h>
3
4 sigjmp_buf B;
5 int foo() {
6   sigsetjmp(B, 1);
7   bar();
8 }