Skip to content

Commit 9a53962

Browse files
committed
compress the variable name
1 parent 157e724 commit 9a53962

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

llvm/test/Transforms/LoopVectorize/RISCV/interleaved-store-with-gap.ll

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ entry:
4646
br label %for.body
4747

4848
for.body:
49-
%indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ]
50-
%0 = shl nsw i64 %indvars.iv, 1
49+
%iv = phi i64 [ 0, %entry ], [ %iv.next, %for.body ]
50+
%0 = shl nsw i64 %iv, 1
5151
%arrayidx = getelementptr inbounds i64, ptr %a, i64 %0
52-
store i64 %indvars.iv, ptr %arrayidx, align 8
53-
%indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
54-
%exitcond.not = icmp eq i64 %indvars.iv.next, %n
52+
store i64 %iv, ptr %arrayidx, align 8
53+
%iv.next = add nuw nsw i64 %iv, 1
54+
%exitcond.not = icmp eq i64 %iv.next, %n
5555
br i1 %exitcond.not, label %exit, label %for.body
5656

5757
exit:

0 commit comments

Comments
 (0)