blob: eafa5c2c2465e07301aa5b8aee29aadfff300fe9 (
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 = hidden thread_local global i32 15
define i32 @f() {
entry:
%tmp1 = load i32* @i
ret i32 %tmp1
}
|