Merging r261384:
[oota-llvm.git] / test / CodeGen / X86 / i386-tlscall-fastregalloc.ll
1 ; RUN: llc %s -o - -O0 -regalloc=fast | FileCheck %s
2 target datalayout = "e-m:o-p:32:32-f64:32:64-f80:128-n8:16:32-S128"
3 target triple = "i386-apple-macosx10.10"
4
5 @c = external global i8, align 1
6 @p = thread_local global i8* null, align 4
7
8 ; Check that regalloc fast correctly preserves EAX that is set by the TLS call
9 ; until the actual use.
10 ; PR26485.
11 ;
12 ; CHECK-LABEL: f:
13 ; Get p.
14 ; CHECK: movl _p@{{[0-9a-zA-Z]+}}, [[P_ADDR:%[a-z]+]]
15 ; CHECK-NEXT: calll *([[P_ADDR]])
16 ; At this point eax contiains the address of p.
17 ; Load c address.
18 ; Make sure we do not clobber eax.
19 ; CHECK-NEXT: movl L_c{{[^,]*}}, [[C_ADDR:%e[b-z]x+]]
20 ; Store c address into p.
21 ; CHECK-NEXT: movl [[C_ADDR]], (%eax)
22 define void @f() #0 {
23 entry:
24   store i8* @c, i8** @p, align 4
25   ret void
26 }