blob: aea631896a8cd2bd97cbd7e783dbd284a2309267 [file] [log] [blame]
Tanya Lattner632e88a2008-02-21 07:42:26 +00001; 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
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006
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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000011target datalayout = "e-p:32:32"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000012target triple = "i686-pc-linux-gnu"
Tanya Lattner632e88a2008-02-21 07:42:26 +000013 %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]
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016
Tanya Lattner632e88a2008-02-21 07:42:26 +000017define i32 @foo() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018entry:
Tanya Lattner632e88a2008-02-21 07:42:26 +000019 %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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025}
26
Tanya Lattner632e88a2008-02-21 07:42:26 +000027define i8 @bar() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028entry:
Tanya Lattner632e88a2008-02-21 07:42:26 +000029 %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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033}