blob: 6d8f220d12b1a9a4a63d457800649bb26690e197 [file] [log] [blame]
Dan Gohman5bb7c7c2009-09-08 22:34:10 +00001; RUN: opt < %s -globalopt -S | not grep global
Kenneth Uildriksa092c122009-11-03 15:29:06 +00002target 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 +00003
Tanya Lattner4c4d0b82008-03-01 09:15:35 +00004@G = internal global { i32, float, { double } } {
5 i32 1,
6 float 1.000000e+00,
7 { double } { double 1.727000e+01 } } ; <{ i32, float, { double } }*> [#uses=3]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008
Tanya Lattner4c4d0b82008-03-01 09:15:35 +00009define void @onlystore() {
10 store i32 123, i32* getelementptr ({ i32, float, { double } }* @G, i32 0, i32 0)
11 ret void
Dan Gohmanf17a25c2007-07-18 16:29:46 +000012}
13
Tanya Lattner4c4d0b82008-03-01 09:15:35 +000014define float @storeinit() {
15 store float 1.000000e+00, float* getelementptr ({ i32, float, { double } }* @G, i32 0, i32 1)
16 %X = load float* getelementptr ({ i32, float, { double } }* @G, i32 0, i32 1) ; <float> [#uses=1]
17 ret float %X
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018}
19
Tanya Lattner4c4d0b82008-03-01 09:15:35 +000020define double @constantize() {
21 %X = load double* getelementptr ({ i32, float, { double } }* @G, i32 0, i32 2, i32 0) ; <double> [#uses=1]
22 ret double %X
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023}
Tanya Lattner4c4d0b82008-03-01 09:15:35 +000024