[llvm] [LV] Strengthen calls to collectInstsToScalarize (NFC) (PR #130642)
David Sherwood via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 02:02:54 PDT 2025
================
@@ -7193,16 +7194,10 @@ void LoopVectorizationPlanner::plan(ElementCount UserVF, unsigned UserIC) {
VFCandidates.push_back(VF);
CM.collectInLoopReductions();
- for (const auto &VF : VFCandidates) {
+ for (const auto &VF : VFCandidates)
----------------
david-arm wrote:
I think it's best to keep the braces here for readability because there is a comment in the loop.
https://github.com/llvm/llvm-project/pull/130642
More information about the llvm-commits
mailing list