mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
11 lines
207 B
LLVM
11 lines
207 B
LLVM
|
; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu > %t
|
||
|
; RUN: grep {movzwl %gs:i@NTPOFF, %eax} %t
|
||
|
|
||
|
@i = thread_local global i16 15
|
||
|
|
||
|
define i16 @f() {
|
||
|
entry:
|
||
|
%tmp1 = load i16* @i
|
||
|
ret i16 %tmp1
|
||
|
}
|