Mercurial > hg > Members > tobaru > cbc > CbC_llvm
view test/CodeGen/SystemZ/tls-07.ll @ 128:c347d3398279 default tip
fix
author | mir3636 |
---|---|
date | Wed, 06 Dec 2017 14:37:17 +0900 |
parents | afa8332a0e37 |
children |
line wrap: on
line source
; 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 }