2009-02-27 14:37:18 +01:00
|
|
|
; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu -relocation-model=pic > %t
|
2009-06-20 22:38:48 +02:00
|
|
|
; RUN: grep {leal i@TLSGD(,%ebx), %eax} %t
|
2009-02-27 14:37:18 +01:00
|
|
|
; RUN: grep {call ___tls_get_addr@PLT} %t
|
2009-04-12 12:43:41 +02: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 14:37:18 +01:00
|
|
|
|
|
|
|
@i = thread_local global i32 15
|
|
|
|
|
2009-06-20 21:48:26 +02:00
|
|
|
define i32* @f() nounwind {
|
2009-02-27 14:37:18 +01:00
|
|
|
entry:
|
|
|
|
ret i32* @i
|
|
|
|
}
|