blob: 9377b855e1c5c8c743622ecfd9123ee91bf0d4d8 [file] [log] [blame]
Eric Christophere6051002011-07-26 00:57:50 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
4#include <setjmp.h>
5
6sigjmp_buf B;
7int foo() {
8 sigsetjmp(B, 1);
9 bar();
10}