diff options
Diffstat (limited to 'test/FrontendC/2003-08-18-SigSetJmp.c')
-rw-r--r-- | test/FrontendC/2003-08-18-SigSetJmp.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/FrontendC/2003-08-18-SigSetJmp.c b/test/FrontendC/2003-08-18-SigSetJmp.c deleted file mode 100644 index fc0d765..0000000 --- a/test/FrontendC/2003-08-18-SigSetJmp.c +++ /dev/null @@ -1,10 +0,0 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null - - -#include <setjmp.h> - -sigjmp_buf B; -int foo() { - sigsetjmp(B, 1); - bar(); -} |