aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/Thumb2/tls1.ll
blob: 8755f575173b7044f60cc15134d4c04f502c6c00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: llc < %s -mtriple=thumbv7-linux-gnueabi | \
; RUN:     grep "i(TPOFF)"
; RUN: llc < %s -mtriple=thumbv7-linux-gnueabi | \
; RUN:     grep "__aeabi_read_tp"
; RUN: llc < %s -mtriple=thumbv7-linux-gnueabi \
; RUN:     -relocation-model=pic | grep "__tls_get_addr"


@i = dso_local thread_local global i32 15		; <ptr> [#uses=2]

define dso_local i32 @f() {
entry:
	%tmp1 = load i32, ptr @i		; <i32> [#uses=1]
	ret i32 %tmp1
}

define dso_local ptr @g() {
entry:
	ret ptr @i
}