aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/tls1.ll
blob: ccff7180eb00134d0a409a401c55f5d0a66be65c (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 = thread_local global i32 15

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