2009-09-08 23:54:48 +00:00
|
|
|
; RUN: llc < %s -march=x86 -mtriple=i386-linux-gnu > %t
|
2009-02-27 13:37:18 +00:00
|
|
|
; RUN: grep {movl %gs:i@NTPOFF, %eax} %t
|
2009-09-08 23:54:48 +00:00
|
|
|
; RUN: llc < %s -march=x86-64 -mtriple=x86_64-linux-gnu > %t2
|
2009-04-13 13:02:49 +00:00
|
|
|
; RUN: grep {movl %fs:i@TPOFF, %eax} %t2
|
2007-04-23 01:29:35 +00:00
|
|
|
|
2009-02-27 13:37:18 +00:00
|
|
|
@i = thread_local global i32 15
|
2007-04-23 01:29:35 +00:00
|
|
|
|
2009-06-20 19:43:09 +00:00
|
|
|
define i32 @f() nounwind {
|
2007-04-23 01:29:35 +00:00
|
|
|
entry:
|
2009-02-27 13:37:18 +00:00
|
|
|
%tmp1 = load i32* @i
|
2007-04-23 01:29:35 +00:00
|
|
|
ret i32 %tmp1
|
|
|
|
}
|