aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/tls-07.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/SystemZ/tls-07.ll')
-rw-r--r--test/CodeGen/SystemZ/tls-07.ll16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/CodeGen/SystemZ/tls-07.ll b/test/CodeGen/SystemZ/tls-07.ll
deleted file mode 100644
index be66c093bd42..000000000000
--- a/test/CodeGen/SystemZ/tls-07.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; Test local-dynamic TLS access optimizations.
-;
-; If we access two different local-dynamic TLS variables, we only
-; need a single call to __tls_get_offset.
-;
-; RUN: llc < %s -mcpu=z10 -mtriple=s390x-linux-gnu -relocation-model=pic | grep "__tls_get_offset" | count 1
-
-@x = thread_local(localdynamic) global i32 0
-@y = thread_local(localdynamic) global i32 0
-
-define i32 @foo() {
- %valx = load i32, i32* @x
- %valy = load i32, i32* @y
- %add = add nsw i32 %valx, %valy
- ret i32 %add
-}