We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29eb436 commit 7501ca9Copy full SHA for 7501ca9
llvm/test/Transforms/LoopVectorize/RISCV/vectorize-force-tail-with-evl-fixed-order-recurrence.ll
@@ -630,15 +630,15 @@ entry:
630
br label %for.body
631
632
for.body:
633
- %indvars = phi i64 [ 0, %entry ], [ %indvars.next, %for.body ]
+ %iv = phi i64 [ 0, %entry ], [ %iv.next, %for.body ]
634
%for1 = phi i32 [ 33, %entry ], [ %0, %for.body ]
635
- %arrayidx = getelementptr inbounds nuw i32, ptr %A, i64 %indvars
+ %arrayidx = getelementptr inbounds nuw i32, ptr %A, i64 %iv
636
%0 = load i32, ptr %arrayidx, align 4
637
%add = add nsw i32 %for1, %0
638
- %arrayidx2 = getelementptr inbounds nuw i32, ptr %B, i64 %indvars
+ %arrayidx2 = getelementptr inbounds nuw i32, ptr %B, i64 %iv
639
store i32 %add, ptr %arrayidx2, align 4
640
- %indvars.next = add nuw nsw i64 %indvars, 1
641
- %exitcond.not = icmp eq i64 %indvars.next, %TC
+ %iv.next = add nuw nsw i64 %iv, 1
+ %exitcond.not = icmp eq i64 %iv.next, %TC
642
br i1 %exitcond.not, label %for.end, label %for.body, !llvm.loop !0
643
644
for.end:
0 commit comments