summaryrefslogtreecommitdiff
path: root/test/old-elf/Inputs/tls.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/old-elf/Inputs/tls.c')
-rw-r--r--test/old-elf/Inputs/tls.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/old-elf/Inputs/tls.c b/test/old-elf/Inputs/tls.c
deleted file mode 100644
index 672350756562..000000000000
--- a/test/old-elf/Inputs/tls.c
+++ /dev/null
@@ -1,11 +0,0 @@
-extern __thread int tls0;
-extern __thread int tls1;
-extern __thread int tls2;
-
-__thread int tls0 = 0;
-__thread int tls1 = 0;
-__thread int tls2 = 1;
-
-int main() {
- return tls0 + tls1 + tls2;
-}