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