aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/tls9.ll
blob: 31dffcc18c8cea358dc16c33ada0c790359c9970 (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu > %t
; RUN: grep {movl	%gs:i@NTPOFF, %eax} %t

@i = external hidden thread_local global i32

define i32 @f() {
entry:
	%tmp1 = load i32* @i
	ret i32 %tmp1
}