summaryrefslogtreecommitdiff
path: root/test/lld/shared_longjmp.c
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2019-10-25 14:19:12 -0700
committerGitHub <noreply@github.com>2019-10-25 14:19:12 -0700
commit4f9151dec445abb901ae22d8d4db5c5ea8e4c528 (patch)
treef44ae7589260843095321db5f159aeb768921649 /test/lld/shared_longjmp.c
parent8d19d00268a4b1af556008bea933ede869d8a757 (diff)
downloadbinaryen-4f9151dec445abb901ae22d8d4db5c5ea8e4c528.tar.gz
binaryen-4f9151dec445abb901ae22d8d4db5c5ea8e4c528.tar.bz2
binaryen-4f9151dec445abb901ae22d8d4db5c5ea8e4c528.zip
When renaming functions ensure the corresponding GOT.func entry is also renamed (#2382)
Fixes https://github.com/WebAssembly/binaryen/issues/2180
Diffstat (limited to 'test/lld/shared_longjmp.c')
-rw-r--r--test/lld/shared_longjmp.c16
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);
+ }
+}