From: Chris Lattner Date: Mon, 18 Aug 2003 15:45:55 +0000 (+0000) Subject: New testcase, distilled from ed-0.2 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=95881ec1bb6afcbfbb21ec7dfa8956f27052959a;p=oota-llvm.git New testcase, distilled from ed-0.2 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7950 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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(); +}