mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-09 03:56:28 +00:00
11 lines
231 B
LLVM
11 lines
231 B
LLVM
![]() |
; 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 = external hidden thread_local global i32
|
||
|
|
||
|
define i32* @f() {
|
||
|
entry:
|
||
|
ret i32* @i
|
||
|
}
|