hanchenye-llvm-project/clang/test/CodeGen/2003-08-18-SigSetJmp.c

11 lines
247 B
C

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