mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 23:05:31 +00:00
094fad37b9
Tested by bootstrapping llvm-gcc and using that to build llvm. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68645 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
214 B
LLVM
11 lines
214 B
LLVM
; 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 = thread_local global i32 15
|
|
|
|
define i32* @f() {
|
|
entry:
|
|
ret i32* @i
|
|
}
|