summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@outlook.com>2024-05-24 21:36:55 +0000
committerAlexey Bataev <a.bataev@outlook.com>2024-05-24 21:36:55 +0000
commitbe2e9f82e9f3fe203e4dd27fff875db2438b31ce (patch)
tree562a58a88718e5abba1e0f5de0954ddbf93dfcad
parent500db9b6cb903e02ec787c8b87b0c4599b299b73 (diff)
Created using spr 1.3.5
-rw-r--r--llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp b/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
index 6aec642d87c8..1e0d90008391 100644
--- a/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+++ b/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
@@ -11791,9 +11791,9 @@ BoUpSLP::isGatherShuffledEntry(
if (TE == VectorizableTree.front().get() &&
(GatheredLoadsEntriesFirst == NoGatheredLoads ||
none_of(ArrayRef(VectorizableTree).drop_front(),
- [](const std::unique_ptr<TreeEntry> &TE) {
- return TE->State != TreeEntry::NeedToGather;
- })))
+ [](const std::unique_ptr<TreeEntry> &TE) {
+ return TE->State != TreeEntry::NeedToGather;
+ })))
return {};
// FIXME: Gathering for non-power-of-2 nodes not implemented yet.
if (TE->isNonPowOf2Vec())