You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
This commit is contained in:
parent
32d52ae4ca
commit
f32dbaf0b2
17
external/llvm/test/CodeGen/SystemZ/tls-06.ll
vendored
Normal file
17
external/llvm/test/CodeGen/SystemZ/tls-06.ll
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
; Test general-dynamic TLS access optimizations.
|
||||
;
|
||||
; If we access two different TLS variables, we need two calls to
|
||||
; __tls_get_offset, but should load _GLOBAL_OFFSET_TABLE only once.
|
||||
;
|
||||
; RUN: llc < %s -mcpu=z10 -mtriple=s390x-linux-gnu -relocation-model=pic | grep "__tls_get_offset" | count 2
|
||||
; RUN: llc < %s -mcpu=z10 -mtriple=s390x-linux-gnu -relocation-model=pic | grep "_GLOBAL_OFFSET_TABLE_" | count 1
|
||||
|
||||
@x = thread_local global i32 0
|
||||
@y = thread_local 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
|
||||
}
|
Reference in New Issue
Block a user