blob: 50e2ba6b6bc8432e3887e55786d55c9cefafee5e [file] [log] [blame]
Lauro Ramos Venancio0a2cdb62007-04-23 01:29:35 +00001; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu | \
2; RUN: grep {movl %gs:(%eax), %eax}
3; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu | \
4; RUN: grep {addl i@INDNTPOFF, %eax}
5; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu -relocation-model=pic | \
6; RUN: grep {leal i@TLSGD(,%ebx,1), %eax}
7
8@i = external thread_local global i32 ; <i32*> [#uses=2]
9
10define i32 @f() {
11entry:
12 %tmp1 = load i32* @i ; <i32> [#uses=1]
13 ret i32 %tmp1
14}
15
16define i32* @g() {
17entry:
18 ret i32* @i
19}