blob: fb57ae1a3917073ac35ec4864e0a8b3b29600ae1 (
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:0, %eax} %t
; RUN: grep {leal i@NTPOFF(%eax), %eax} %t
@i = thread_local global i32 15
define i32* @f() {
entry:
ret i32* @i
}
|