Displaying 1 result from an estimated 1 matches for "cleanup373".
Did you mean:
cleanup3
2020 May 17
2
Question about the order of predecessors in LoopVectorizer with VPlanNatviePath
...ector.body
%vec.phi = phi <4 x i64> [ zeroinitializer, %for.cond.cleanup972 ],
[ %8, %vector.body ]
...
for.cond.cleanup972: ; preds = %for.body1068
%8 = add nuw nsw <4 x i64> %vec.phi, <i64 1, i64 1, i64 1, i64 1>
...
br i1 %10, label %for.cond.cleanup373, label %for.body10.preheader67
As you can see, %vec.phi has wrong incoming basic blocks. It could be as below.
%vec.phi = phi <4 x i64> [ %8, %for.cond.cleanup972 ], [
zeroinitializer, %vector.body ]
The problem comes from "InnerLoopVectorizer::fixNonInductionPHIs()".
This functi...