2009-02-27 13:37:18 +00:00
|
|
|
; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu -relocation-model=pic > %t
|
2009-06-20 20:38:48 +00:00
|
|
|
; RUN: grep {leal i@TLSGD(,%ebx), %eax} %t
|
2009-02-27 13:37:18 +00:00
|
|
|
; RUN: grep {call ___tls_get_addr@PLT} %t
|
2009-04-12 10:43:41 +00:00
|
|
|
; RUN: llvm-as < %s | llc -march=x86-64 -mtriple=x86_64-linux-gnu -relocation-model=pic > %t2
|
|
|
|
; RUN: grep {leaq i@TLSGD(%rip), %rdi} %t2
|
|
|
|
; RUN: grep {call __tls_get_addr@PLT} %t2
|
2009-02-27 13:37:18 +00:00
|
|
|
|
|
|
|
@i = external thread_local global i32 ; <i32*> [#uses=2]
|
|
|
|
|
|
|
|
define i32 @f() {
|
|
|
|
entry:
|
|
|
|
%tmp1 = load i32* @i ; <i32> [#uses=1]
|
|
|
|
ret i32 %tmp1
|
|
|
|
}
|