Jakob Stoklund Olesen | 6660ed5 | 2012-06-08 23:15:12 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -march=x86-64 -mtriple=x86_64-linux-gnu -regalloc=fast -optimize-regalloc=0 -relocation-model=pic > %t2 |
Chandler Carruth | 4177e6f | 2012-07-02 12:47:22 +0000 | [diff] [blame] | 2 | ; RUN: grep "leaq.*TLSGD" %t2 |
| 3 | ; RUN: grep "__tls_get_addr" %t2 |
Dan Gohman | f45728d | 2009-04-27 15:08:34 +0000 | [diff] [blame] | 4 | ; PR4004 |
Rafael Espindola | 15f1b66 | 2009-04-24 12:59:40 +0000 | [diff] [blame] | 5 | |
| 6 | @i = thread_local global i32 15 |
| 7 | |
| 8 | define i32 @f() { |
| 9 | entry: |
| 10 | %tmp1 = load i32* @i |
| 11 | ret i32 %tmp1 |
| 12 | } |