diff options
Diffstat (limited to 'test/lld/shared_longjmp.c')
-rw-r--r-- | test/lld/shared_longjmp.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/lld/shared_longjmp.c b/test/lld/shared_longjmp.c new file mode 100644 index 000000000..52c1012c1 --- /dev/null +++ b/test/lld/shared_longjmp.c @@ -0,0 +1,16 @@ +typedef struct jmp_buf_buf { + int thing; +} jmp_buf; + +void longjmp(jmp_buf env, int val); +int setjmp(jmp_buf env); + +int __THREW__; +int __threwValue; + +void _start() { + jmp_buf jmp; + if (setjmp(jmp) == 0) { + longjmp(jmp, 1); + } +} |