[llvm] [SLP]Support revectorization of the previously vectorized scalars (PR #133091)
Gaƫtan Bossu via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 03:26:15 PDT 2025
================
@@ -7553,7 +7550,7 @@ void BoUpSLP::buildExternalUses(
// Some in-tree scalars will remain as scalar in vectorized
// instructions. If that is the case, the one in FoundLane will
// be used.
- if (any_of(UseEntries, [&](TreeEntry *UseEntry) {
+ if (all_of(UseEntries, [&](TreeEntry *UseEntry) {
----------------
gbossu wrote:
Checking: After changing `any_of` to `all_of`, is the comment higher up still up to date?
https://github.com/llvm/llvm-project/pull/133091
More information about the llvm-commits
mailing list