diff options
Diffstat (limited to 'test/Transforms/StructurizeCFG')
-rw-r--r-- | test/Transforms/StructurizeCFG/branch-on-argument.ll | 2 | ||||
-rw-r--r-- | test/Transforms/StructurizeCFG/loop-multiple-exits.ll | 4 | ||||
-rw-r--r-- | test/Transforms/StructurizeCFG/post-order-traversal-bug.ll | 16 |
3 files changed, 11 insertions, 11 deletions
diff --git a/test/Transforms/StructurizeCFG/branch-on-argument.ll b/test/Transforms/StructurizeCFG/branch-on-argument.ll index 4eba0cd..386994f 100644 --- a/test/Transforms/StructurizeCFG/branch-on-argument.ll +++ b/test/Transforms/StructurizeCFG/branch-on-argument.ll @@ -28,7 +28,7 @@ entry: for.body: %i = phi i32 [0, %entry], [%i.inc, %end.loop] - %ptr = getelementptr i32 addrspace(1)* %out, i32 %i + %ptr = getelementptr i32, i32 addrspace(1)* %out, i32 %i store i32 %i, i32 addrspace(1)* %ptr, align 4 br i1 %arg, label %mid.loop, label %end.loop diff --git a/test/Transforms/StructurizeCFG/loop-multiple-exits.ll b/test/Transforms/StructurizeCFG/loop-multiple-exits.ll index 45f3165..40f6be9 100644 --- a/test/Transforms/StructurizeCFG/loop-multiple-exits.ll +++ b/test/Transforms/StructurizeCFG/loop-multiple-exits.ll @@ -23,7 +23,7 @@ for.cond: ; preds = %for.inc, %entry ; CHECK: for.body: for.body: ; preds = %for.cond - %arrayidx = getelementptr inbounds i32 addrspace(1)* %out, i32 %i.0 + %arrayidx = getelementptr inbounds i32, i32 addrspace(1)* %out, i32 %i.0 store i32 %i.0, i32 addrspace(1)* %arrayidx, align 4 %cmp1 = icmp ugt i32 %i.0, %cond_b ; CHECK: br i1 %{{[0-9a-zA-Z_]+}}, label %for.inc, label %[[FLOW1:[0-9a-zA-Z_]+]] @@ -37,7 +37,7 @@ for.body: ; preds = %for.cond for.inc: ; preds = %for.body %0 = add i32 %cond_a, %i.0 - %arrayidx3 = getelementptr inbounds i32 addrspace(1)* %out, i32 %0 + %arrayidx3 = getelementptr inbounds i32, i32 addrspace(1)* %out, i32 %0 store i32 %i.0, i32 addrspace(1)* %arrayidx3, align 4 %inc = add i32 %i.0, 1 br label %for.cond diff --git a/test/Transforms/StructurizeCFG/post-order-traversal-bug.ll b/test/Transforms/StructurizeCFG/post-order-traversal-bug.ll index 740b3d1..ba9aa29 100644 --- a/test/Transforms/StructurizeCFG/post-order-traversal-bug.ll +++ b/test/Transforms/StructurizeCFG/post-order-traversal-bug.ll @@ -28,11 +28,11 @@ for.body: ; preds = %for.body.backedge, ; CHECK: lor.lhs.false: ; CHECK: br label %Flow lor.lhs.false: ; preds = %for.body - %arrayidx = getelementptr inbounds float* %nr, i64 %indvars.iv - %tmp1 = load float* %arrayidx, align 4 + %arrayidx = getelementptr inbounds float, float* %nr, i64 %indvars.iv + %tmp1 = load float, float* %arrayidx, align 4 %tmp2 = add nsw i64 %indvars.iv, -1 - %arrayidx2 = getelementptr inbounds float* %nr, i64 %tmp2 - %tmp3 = load float* %arrayidx2, align 4 + %arrayidx2 = getelementptr inbounds float, float* %nr, i64 %tmp2 + %tmp3 = load float, float* %arrayidx2, align 4 %cmp3 = fcmp une float %tmp1, %tmp3 br i1 %cmp3, label %if.then, label %for.body.1 @@ -44,8 +44,8 @@ lor.lhs.false: ; preds = %for.body if.then: ; preds = %lor.lhs.false, %for.body %sub4 = sub nsw i32 %tmp0, %prev_start.026 %tmp4 = add nsw i64 %indvars.iv, -1 - %arrayidx8 = getelementptr inbounds float* %nr, i64 %tmp4 - %tmp5 = load float* %arrayidx8, align 4 + %arrayidx8 = getelementptr inbounds float, float* %nr, i64 %tmp4 + %tmp5 = load float, float* %arrayidx8, align 4 br i1 %cmp1, label %for.end, label %for.body.1 ; CHECK: for.end: @@ -83,8 +83,8 @@ for.body.6: ; preds = %for.body.1 ; CHECK: if.then6.6 ; CHECK: br label %for.body.backedge if.then6.6: ; preds = %for.body.6 - %arrayidx8.6 = getelementptr inbounds float* %nr, i64 %indvars.iv.next.454 - %tmp29 = load float* %arrayidx8.6, align 4 + %arrayidx8.6 = getelementptr inbounds float, float* %nr, i64 %indvars.iv.next.454 + %tmp29 = load float, float* %arrayidx8.6, align 4 br label %for.body.backedge ; CHECK: Flow3: |