diff options
Diffstat (limited to 'test/Transforms/StructurizeCFG/post-order-traversal-bug.ll')
-rw-r--r-- | test/Transforms/StructurizeCFG/post-order-traversal-bug.ll | 16 |
1 files changed, 8 insertions, 8 deletions
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: |