"ret (constexpr)" can't be folded into a Constant. Add a method to
[oota-llvm.git] / test / Transforms / SCCP / loadtest.ll
1 ; This test makes sure that these instructions are properly constant propagated.
2 ;
3
4 ; RUN: llvm-as < %s | opt -sccp | llvm-dis | not grep load
5
6
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
10 define i32 @test1() {
11         %B = load i32* @X               ; <i32> [#uses=1]
12         ret i32 %B
13 }
14
15 define 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]
18         ret float %B
19 }
20
21 define 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
25 }
26