1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
11 lines
247 B
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();
|
|
}
|