blob: fd82aef821ff6621ae2933f300f86acc95de1c2e [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; This test makes sure that these instructions are properly constant propagated.
2;
3
Dan Gohman5bb7c7c2009-09-08 22:34:10 +00004; RUN: opt < %s -sccp -S | not grep load
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005
Tanya Lattnerba93e2d2008-03-19 04:14:49 +00006
7@X = constant i32 42 ; <i32*> [#uses=1]
8@Y = constant [2 x { i32, float }] [ { i32, float } { i32 12, float 1.000000e+00 }, { i32, float } { i32 37, float 0x3FF3B2FEC0000000 } ] ; <[2 x { i32, float }]*> [#uses=2]
9
10define i32 @test1() {
11 %B = load i32* @X ; <i32> [#uses=1]
12 ret i32 %B
Dan Gohmanf17a25c2007-07-18 16:29:46 +000013}
14
Tanya Lattnerba93e2d2008-03-19 04:14:49 +000015define float @test2() {
16 %A = getelementptr [2 x { i32, float }]* @Y, i64 0, i64 1, i32 1 ; <float*> [#uses=1]
17 %B = load float* %A ; <float> [#uses=1]
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018 ret float %B
19}
20
Tanya Lattnerba93e2d2008-03-19 04:14:49 +000021define i32 @test3() {
22 %A = getelementptr [2 x { i32, float }]* @Y, i64 0, i64 0, i32 0 ; <i32*> [#uses=1]
23 %B = load i32* %A ; <i32> [#uses=1]
24 ret i32 %B
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025}
26