1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm %s -o /dev/null 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc #define _JBLEN ((9 * 2) + 3 + 16) 4*f4a2713aSLionel Sambuc typedef int sigjmp_buf[_JBLEN + 1]; 5*f4a2713aSLionel Sambuc int sigsetjmp(sigjmp_buf env, int savemask); 6*f4a2713aSLionel Sambuc sigjmp_buf B; foo()7*f4a2713aSLionel Sambucint foo() { 8*f4a2713aSLionel Sambuc sigsetjmp(B, 1); 9*f4a2713aSLionel Sambuc bar(); 10*f4a2713aSLionel Sambuc } 11