1 2 3 4 5 6 7 8 9 10
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null #include <setjmp.h> sigjmp_buf B; int foo() { sigsetjmp(B, 1); bar(); }