mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-29 23:12:55 +01:00
613d4926b1
llvm-svn: 7950
9 lines
78 B
C
9 lines
78 B
C
|
|
#include <setjmp.h>
|
|
|
|
sigjmp_buf B;
|
|
int foo() {
|
|
sigsetjmp(B, 1);
|
|
bar();
|
|
}
|