about summary refs log tree commit diff
path: root/REORG.TODO/elf/tst-tls19mod3.c
diff options
context:
space:
mode:
Diffstat (limited to 'REORG.TODO/elf/tst-tls19mod3.c')
-rw-r--r--REORG.TODO/elf/tst-tls19mod3.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/REORG.TODO/elf/tst-tls19mod3.c b/REORG.TODO/elf/tst-tls19mod3.c
new file mode 100644
index 0000000000..e7b28016b3
--- /dev/null
+++ b/REORG.TODO/elf/tst-tls19mod3.c
@@ -0,0 +1,16 @@
+#include <stdio.h>
+
+static int __thread tbaz __attribute__ ((tls_model ("local-dynamic"))) = 42;
+
+void
+setter2 (int a)
+{
+  tbaz = a;
+}
+
+int
+baz (void)
+{
+  printf ("&tbaz=%p\n", &tbaz);
+  return tbaz;
+}