blob: 502d6d45852c8b42fab9f03155c6bb7397f89892 [file] [log] [blame]
Ulrich Weigand7db69182015-02-18 09:13:27 +00001; Test general-dynamic TLS access optimizations.
2;
3; If we access the same TLS variable twice, there should only be
4; a single call to __tls_get_offset.
5;
6; RUN: llc < %s -mcpu=z10 -mtriple=s390x-linux-gnu -relocation-model=pic | grep "__tls_get_offset" | count 1
7
8@x = thread_local global i32 0
9
10define i32 @foo() {
David Blaikiea79ac142015-02-27 21:17:42 +000011 %val = load i32, i32* @x
Ulrich Weigand7db69182015-02-18 09:13:27 +000012 %inc = add nsw i32 %val, 1
13 store i32 %inc, i32* @x
14 ret i32 %val
15}