[llvm] [VPlan] Only use selectVectorizationFactor for cross-check (NFCI). (PR #103033)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 20 09:02:25 PDT 2024
================
@@ -7031,11 +7030,10 @@ LoopVectorizationPlanner::plan(ElementCount UserVF, unsigned UserIC) {
if (!hasPlanWithVF(UserVF)) {
LLVM_DEBUG(dbgs()
<< "LV: No VPlan could be built for " << UserVF << ".\n");
- return std::nullopt;
}
LLVM_DEBUG(printPlans(dbgs()));
- return {{UserVF, 0, 0}};
+ return;
} else
----------------
ayalz wrote:
Just noting another else-after-return, below, but perhaps there it overall looks better(?):
```
return false;
} else if (!VectorizeLoop && InterleaveLoop) {
```
https://github.com/llvm/llvm-project/pull/103033
More information about the llvm-commits
mailing list