blob: 06485b53e0ebb1a7d160f192c2f03788068e663a [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; In this case, the global can only be broken up by one level.
2
Dan Gohman3c7d3082009-09-11 18:01:28 +00003; RUN: opt < %s -globalopt -S | not grep 12345
Kenneth Uildriksa092c122009-11-03 15:29:06 +00004target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-v64:64:64-v128:128:128"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005
Tanya Lattner4c4d0b82008-03-01 09:15:35 +00006@G = internal global { i32, [4 x float] } zeroinitializer ; <{ i32, [4 x float] }*> [#uses=3]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007
Tanya Lattner4c4d0b82008-03-01 09:15:35 +00008define void @onlystore() {
9 store i32 12345, i32* getelementptr ({ i32, [4 x float] }* @G, i32 0, i32 0)
10 ret void
Dan Gohmanf17a25c2007-07-18 16:29:46 +000011}
12
Tanya Lattner4c4d0b82008-03-01 09:15:35 +000013define void @storeinit(i32 %i) {
14 %Ptr = getelementptr { i32, [4 x float] }* @G, i32 0, i32 1, i32 %i ; <float*> [#uses=1]
15 store float 1.000000e+00, float* %Ptr
16 ret void
Dan Gohmanf17a25c2007-07-18 16:29:46 +000017}
18
Tanya Lattner4c4d0b82008-03-01 09:15:35 +000019define float @readval(i32 %i) {
20 %Ptr = getelementptr { i32, [4 x float] }* @G, i32 0, i32 1, i32 %i ; <float*> [#uses=1]
21 %V = load float* %Ptr ; <float> [#uses=1]
22 ret float %V
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023}
24