aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-x86-64/pr25416-5a.c
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-x86-64/pr25416-5a.c')
-rw-r--r--ld/testsuite/ld-x86-64/pr25416-5a.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/ld/testsuite/ld-x86-64/pr25416-5a.c b/ld/testsuite/ld-x86-64/pr25416-5a.c
new file mode 100644
index 0000000..9d820a1
--- /dev/null
+++ b/ld/testsuite/ld-x86-64/pr25416-5a.c
@@ -0,0 +1,33 @@
+#include <stdlib.h>
+#include <stdio.h>
+
+__thread int bar = 301;
+
+extern int *test1 (int);
+extern int *test2 (int);
+extern int *test3 (int);
+
+int
+main ()
+{
+ int *p;
+ p = test1 (30);
+ if (*p != 30)
+ abort ();
+ *p = 40;
+ test1 (40);
+ p = test2 (301);
+ if (*p != 301)
+ abort ();
+ if (p != &bar)
+ abort ();
+ *p = 40;
+ test2 (40);
+ p = test3 (40);
+ if (*p != 40)
+ abort ();
+ *p = 50;
+ test3 (50);
+ puts ("PASS");
+ return 0;
+}