blob: 63c4127e0dc511f6536ef08c514888b3e884aa49 [file] [log] [blame]
// RUN: %clang -S -emit-llvm %s -o /dev/null
// XFAIL: mingw,win32
#include <setjmp.h>
sigjmp_buf B;
int foo() {
sigsetjmp(B, 1);
bar();
}