Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / SystemZ / tls-07.ll
blob6768c33922bb12338951d48d624f075c52f58ef9
1 ; Test local-dynamic TLS access optimizations.
3 ; If we access two different local-dynamic TLS variables, we only
4 ; need a single call to __tls_get_offset.
6 ; RUN: llc < %s -mcpu=z10 -mtriple=s390x-linux-gnu -relocation-model=pic | grep "__tls_get_offset" | count 1
8 @x = thread_local(localdynamic) global i32 0
9 @y = thread_local(localdynamic) global i32 0
11 define i32 @foo() {
12   %valx = load i32, ptr @x
13   %valy = load i32, ptr @y
14   %add = add nsw i32 %valx, %valy
15   ret i32 %add