Skip to content

Commit 27dfb3f

Browse files
author
Mikhail Gudim
committed
fix typo
1 parent bf62b4f commit 27dfb3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6829,7 +6829,7 @@ bool BoUpSLP::isStridedLoad(ArrayRef<Value *> VL, ArrayRef<Value *> PointerOps,
68296829

68306830
// Try to generate strided load node.
68316831
auto IsAnyPointerUsedOutGraph =
6832-
Iany_of(PointerOps, [&](Value *V) {
6832+
any_of(PointerOps, [&](Value *V) {
68336833
return isa<Instruction>(V) && any_of(V->users(), [&](User *U) {
68346834
return !isVectorized(U) && !MustGather.contains(U);
68356835
});

0 commit comments

Comments
 (0)