aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2003-08-18-SigSetJmp.c
blob: 63c4127e0dc511f6536ef08c514888b3e884aa49 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang -S -emit-llvm %s  -o /dev/null
// XFAIL: mingw,win32

#include <setjmp.h>

sigjmp_buf B;
int foo() {
  sigsetjmp(B, 1);
  bar();
}