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