aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2003-08-18-SigSetJmp.c
blob: 1b1b18f6eeccc0b438d441751032ae33d121f6a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// 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();
}