From 95881ec1bb6afcbfbb21ec7dfa8956f27052959a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 18 Aug 2003 15:45:55 +0000 Subject: [PATCH] New testcase, distilled from ed-0.2 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7950 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CFrontend/2003-08-18-SigSetJmp.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/CFrontend/2003-08-18-SigSetJmp.c diff --git a/test/CFrontend/2003-08-18-SigSetJmp.c b/test/CFrontend/2003-08-18-SigSetJmp.c new file mode 100644 index 00000000000..fb254841927 --- /dev/null +++ b/test/CFrontend/2003-08-18-SigSetJmp.c @@ -0,0 +1,8 @@ + +#include + +sigjmp_buf B; +int foo() { + sigsetjmp(B, 1); + bar(); +} -- 2.34.1