Dan Gohman | 0a06310 | 2009-09-08 23:54:48 +0000 | [diff] [blame^] | 1 | ; RUN: llc < %s -march=x86 -mtriple=i386-linux-gnu -regalloc=local -relocation-model=pic > %t |
Rafael Espindola | 7fc4b8d | 2009-04-24 12:59:40 +0000 | [diff] [blame] | 2 | ; RUN: grep {leal.*TLSGD.*___tls_get_addr} %t |
Dan Gohman | 0a06310 | 2009-09-08 23:54:48 +0000 | [diff] [blame^] | 3 | ; RUN: llc < %s -march=x86-64 -mtriple=x86_64-linux-gnu -regalloc=local -relocation-model=pic > %t2 |
Rafael Espindola | 7fc4b8d | 2009-04-24 12:59:40 +0000 | [diff] [blame] | 4 | ; RUN: grep {leaq.*TLSGD.*__tls_get_addr} %t2 |
Dan Gohman | 1067f9b | 2009-04-27 15:08:34 +0000 | [diff] [blame] | 5 | ; PR4004 |
Rafael Espindola | 7fc4b8d | 2009-04-24 12:59:40 +0000 | [diff] [blame] | 6 | |
| 7 | @i = thread_local global i32 15 |
| 8 | |
| 9 | define i32 @f() { |
| 10 | entry: |
| 11 | %tmp1 = load i32* @i |
| 12 | ret i32 %tmp1 |
| 13 | } |