diff options
Diffstat (limited to 'test/Transforms/StructurizeCFG/loop-multiple-exits.ll')
-rw-r--r-- | test/Transforms/StructurizeCFG/loop-multiple-exits.ll | 4 |
1 files changed, 2 insertions, 2 deletions
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 |