1 /* RUN: %llvmgcc -xc %s -c -o - | llvm-dis | not grep __builtin_
3 * __builtin_longjmp/setjmp should get transformed into llvm.setjmp/longjmp
4 * just like explicit setjmp/longjmp calls are.
7 void jumpaway(int *ptr
) {
8 __builtin_longjmp(ptr
,1);