about summary refs log tree commit diff
path: root/elf/tst-tlsmod13a.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/tst-tlsmod13a.c')
-rw-r--r--elf/tst-tlsmod13a.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/elf/tst-tlsmod13a.c b/elf/tst-tlsmod13a.c
deleted file mode 100644
index ca4eaccbff..0000000000
--- a/elf/tst-tlsmod13a.c
+++ /dev/null
@@ -1,9 +0,0 @@
-__thread int b[2] __attribute__ ((tls_model ("initial-exec")));
-
-extern int foo (void);
-
-int
-bar (void)
-{
-  return foo () + b[0];
-}