aboutsummaryrefslogtreecommitdiff
path: root/elf/tst-tls19mod2.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/tst-tls19mod2.c')
-rw-r--r--elf/tst-tls19mod2.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/elf/tst-tls19mod2.c b/elf/tst-tls19mod2.c
deleted file mode 100644
index cae702f67c..0000000000
--- a/elf/tst-tls19mod2.c
+++ /dev/null
@@ -1,13 +0,0 @@
-static int __thread tbar __attribute__ ((tls_model ("initial-exec"))) = 666;
-
-void
-setter (int a)
-{
- tbar = a;
-}
-
-int
-bar (void)
-{
- return tbar;
-}