blob: ae90c9461079120d9d418e99e3fc79eaba3acc57 [file] [log] [blame]
Lauro Ramos Venancio1bd151a2007-04-27 21:08:48 +00001; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu | \
2; RUN: grep {movl %gs:i@NTPOFF, %eax}
3; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu | \
4; RUN: grep {leal i@NTPOFF(%eax), %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 = thread_local global i32 15 ; <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}