fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git] / test / Transforms / SCCP / loadtest.ll
blobadd2af483f56040142f5cda03b4f1173d5f05ed1
1 ; This test makes sure that these instructions are properly constant propagated.
3 target datalayout = "e-p:32:32"
5 ; RUN: opt < %s -sccp -S | not grep load
8 @X = constant i32 42            ; <i32*> [#uses=1]
9 @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]
11 define i32 @test1() {
12         %B = load i32* @X               ; <i32> [#uses=1]
13         ret i32 %B
16 define float @test2() {
17         %A = getelementptr [2 x { i32, float }]* @Y, i64 0, i64 1, i32 1                ; <float*> [#uses=1]
18         %B = load float* %A             ; <float> [#uses=1]
19         ret float %B
22 define i32 @test3() {
23         %A = getelementptr [2 x { i32, float }]* @Y, i64 0, i64 0, i32 0                ; <i32*> [#uses=1]
24         %B = load i32* %A
25         ret i32 %B
28 define i8 @test4() {
29         %A = bitcast i32* @X to i8*
30         %B = load i8* %A
31         ret i8 %B