diff options
Diffstat (limited to 'test/Transforms/LoopStrengthReduce/dont_insert_redundant_ops.ll')
-rw-r--r-- | test/Transforms/LoopStrengthReduce/dont_insert_redundant_ops.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Transforms/LoopStrengthReduce/dont_insert_redundant_ops.ll b/test/Transforms/LoopStrengthReduce/dont_insert_redundant_ops.ll index 16bb508..4a6ec50 100644 --- a/test/Transforms/LoopStrengthReduce/dont_insert_redundant_ops.ll +++ b/test/Transforms/LoopStrengthReduce/dont_insert_redundant_ops.ll @@ -12,9 +12,9 @@ define void @test1({ i32, i32 }* %P) { br label %Loop Loop: ; preds = %Loop, %0 %INDVAR = phi i32 [ 0, %0 ], [ %INDVAR2, %Loop ] ; <i32> [#uses=3] - %gep1 = getelementptr { i32, i32 }* %P, i32 %INDVAR, i32 0 ; <i32*> [#uses=1] + %gep1 = getelementptr { i32, i32 }, { i32, i32 }* %P, i32 %INDVAR, i32 0 ; <i32*> [#uses=1] store i32 0, i32* %gep1 - %gep2 = getelementptr { i32, i32 }* %P, i32 %INDVAR, i32 1 ; <i32*> [#uses=1] + %gep2 = getelementptr { i32, i32 }, { i32, i32 }* %P, i32 %INDVAR, i32 1 ; <i32*> [#uses=1] store i32 0, i32* %gep2 %INDVAR2 = add i32 %INDVAR, 1 ; <i32> [#uses=1] %cond = call i1 @pred( ) ; <i1> [#uses=1] @@ -28,9 +28,9 @@ define void @test2([2 x i32]* %P) { br label %Loop Loop: ; preds = %Loop, %0 %INDVAR = phi i32 [ 0, %0 ], [ %INDVAR2, %Loop ] ; <i32> [#uses=3] - %gep1 = getelementptr [2 x i32]* %P, i32 %INDVAR, i64 0 ; <i32*> [#uses=1] + %gep1 = getelementptr [2 x i32], [2 x i32]* %P, i32 %INDVAR, i64 0 ; <i32*> [#uses=1] store i32 0, i32* %gep1 - %gep2 = getelementptr [2 x i32]* %P, i32 %INDVAR, i64 1 ; <i32*> [#uses=1] + %gep2 = getelementptr [2 x i32], [2 x i32]* %P, i32 %INDVAR, i64 1 ; <i32*> [#uses=1] store i32 0, i32* %gep2 %INDVAR2 = add i32 %INDVAR, 1 ; <i32> [#uses=1] %cond = call i1 @pred( ) ; <i1> [#uses=1] |