blob: b7f4553f41d6630f5890652fdff44f0e66802ae7 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3
4#include <setjmp.h>
5
6sigjmp_buf B;
7int foo() {
8 sigsetjmp(B, 1);
9 bar();
10}