diff options
Diffstat (limited to 'test/Transforms/InstCombine/load3.ll')
-rw-r--r-- | test/Transforms/InstCombine/load3.ll | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/Transforms/InstCombine/load3.ll b/test/Transforms/InstCombine/load3.ll index f79ef9a..6db8dd3 100644 --- a/test/Transforms/InstCombine/load3.ll +++ b/test/Transforms/InstCombine/load3.ll @@ -5,10 +5,10 @@ target triple = "i386-apple-macosx10.0.0" ; Instcombine should be able to do trivial CSE of loads. define i32 @test1(i32* %p) { - %t0 = getelementptr i32* %p, i32 1 - %y = load i32* %t0 - %t1 = getelementptr i32* %p, i32 1 - %x = load i32* %t1 + %t0 = getelementptr i32, i32* %p, i32 1 + %y = load i32, i32* %t0 + %t1 = getelementptr i32, i32* %p, i32 1 + %x = load i32, i32* %t1 %a = sub i32 %y, %x ret i32 %a ; CHECK-LABEL: @test1( @@ -19,7 +19,7 @@ define i32 @test1(i32* %p) { ; PR7429 @.str = private constant [4 x i8] c"XYZ\00" define float @test2() { - %tmp = load float* bitcast ([4 x i8]* @.str to float*), align 1 + %tmp = load float, float* bitcast ([4 x i8]* @.str to float*), align 1 ret float %tmp ; CHECK-LABEL: @test2( @@ -37,10 +37,10 @@ align 4 ; PR14986 define void @test3() nounwind { ; This is a weird way of computing zero. - %l = load i32* getelementptr ([36 x i32]* @expect32, i32 29826161, i32 28), align 4 - store i32 %l, i32* getelementptr ([36 x i32]* @rslts32, i32 29826161, i32 28), align 4 + %l = load i32, i32* getelementptr ([36 x i32], [36 x i32]* @expect32, i32 29826161, i32 28), align 4 + store i32 %l, i32* getelementptr ([36 x i32], [36 x i32]* @rslts32, i32 29826161, i32 28), align 4 ret void ; CHECK-LABEL: @test3( -; CHECK: store i32 1, i32* getelementptr inbounds ([36 x i32]* @rslts32, i32 0, i32 0) +; CHECK: store i32 1, i32* getelementptr inbounds ([36 x i32], [36 x i32]* @rslts32, i32 0, i32 0) } |