blob: fc0d7659de6d157a210a3fc45cee875489a5b117 [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Tanya Lattnere9af5d12004-11-06 22:41:00 +00002
Chris Lattner95881ec2003-08-18 15:45:55 +00003
4#include <setjmp.h>
5
6sigjmp_buf B;
7int foo() {
8 sigsetjmp(B, 1);
9 bar();
10}