aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/tls6.ll
blob: fc10a57cc1bdb55149018a844d63cc1e3bdc25d7 (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	\$i@NTPOFF, %eax} %t
; RUN: grep {addl	%gs:0, %eax} %t

@i = internal thread_local global i32 15

define i32* @f() {
entry:
	ret i32* @i
}