blob: 757042e5be42e74814ac0ba39d49b1a391b56f9f [file] [log] [blame]
Jakob Stoklund Olesen8a3eab92010-06-15 21:58:33 +00001; RUN: llc < %s -march=x86-64 -mtriple=x86_64-linux-gnu -regalloc=fast -relocation-model=pic > %t2
Rafael Espindola15f1b662009-04-24 12:59:40 +00002; RUN: grep {leaq.*TLSGD.*__tls_get_addr} %t2
Dan Gohmanf45728d2009-04-27 15:08:34 +00003; PR4004
Rafael Espindola15f1b662009-04-24 12:59:40 +00004
5@i = thread_local global i32 15
6
7define i32 @f() {
8entry:
9 %tmp1 = load i32* @i
10 ret i32 %tmp1
11}