llvm-6502/test/CodeGen/X86/tls12.ll

11 lines
203 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu > %t
; RUN: grep {movzbl %gs:i@NTPOFF, %eax} %t
@i = thread_local global i8 15
define i8 @f() {
entry:
%tmp1 = load i8* @i
ret i8 %tmp1
}