llvm/llvm/test/CodeGen/Thumb2/tls1.ll

; 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
}