Fix live variables issues:
[oota-llvm.git] / test / CodeGen / X86 / packed_struct.ll
1 ; RUN: llvm-as < %s | llc -march=x86 | grep foos+5
2 ; RUN: llvm-as < %s | llc -march=x86 | grep foos+1
3 ; RUN: llvm-as < %s | llc -march=x86 | grep foos+9
4 ; RUN: llvm-as < %s | llc -march=x86 | grep bara+19
5 ; RUN: llvm-as < %s | llc -march=x86 | grep bara+4
6
7 ; make sure we compute the correct offset for a packed structure
8
9 ;Note: codegen for this could change rendering the above checks wrong
10
11 target datalayout = "e-p:32:32"
12 target triple = "i686-pc-linux-gnu"
13         %struct.anon = type <{ i8, i32, i32, i32 }>
14 @foos = external global %struct.anon            ; <%struct.anon*> [#uses=3]
15 @bara = weak global [4 x <{ i32, i8 }>] zeroinitializer         ; <[4 x <{ i32, i8 }>]*> [#uses=2]
16
17 define i32 @foo() {
18 entry:
19         %tmp = load i32* getelementptr (%struct.anon* @foos, i32 0, i32 1)              ; <i32> [#uses=1]
20         %tmp3 = load i32* getelementptr (%struct.anon* @foos, i32 0, i32 2)             ; <i32> [#uses=1]
21         %tmp6 = load i32* getelementptr (%struct.anon* @foos, i32 0, i32 3)             ; <i32> [#uses=1]
22         %tmp4 = add i32 %tmp3, %tmp             ; <i32> [#uses=1]
23         %tmp7 = add i32 %tmp4, %tmp6            ; <i32> [#uses=1]
24         ret i32 %tmp7
25 }
26
27 define i8 @bar() {
28 entry:
29         %tmp = load i8* getelementptr ([4 x <{ i32, i8 }>]* @bara, i32 0, i32 0, i32 1)         ; <i8> [#uses=1]
30         %tmp4 = load i8* getelementptr ([4 x <{ i32, i8 }>]* @bara, i32 0, i32 3, i32 1)                ; <i8> [#uses=1]
31         %tmp5 = add i8 %tmp4, %tmp              ; <i8> [#uses=1]
32         ret i8 %tmp5
33 }