about summary refs log tree commit diff
path: root/elf/tst-tls19mod3.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/tst-tls19mod3.c')
-rw-r--r--elf/tst-tls19mod3.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/elf/tst-tls19mod3.c b/elf/tst-tls19mod3.c
deleted file mode 100644
index e7b28016b3..0000000000
--- a/elf/tst-tls19mod3.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#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;
-}