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-07-31 21:57:10 +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
|
2009-07-31 21:57:10 +00:00
|
|
|
; 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 = thread_local global i32 15
|
|
|
|
|
2009-06-20 19:48:26 +00:00
|
|
|
define i32* @f() nounwind {
|
2009-02-27 13:37:18 +00:00
|
|
|
entry:
|
|
|
|
ret i32* @i
|
|
|
|
}
|