Skip to content

Commit 1b1cc2d

Browse files
committed
Fix typo
1 parent abb0bf7 commit 1b1cc2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3294,7 +3294,7 @@ static Value *interleaveVectors(IRBuilderBase &Builder, ArrayRef<Value *> Vals,
32943294
// Scalable vectors cannot use arbitrary shufflevectors (only splats), so
32953295
// must use intrinsics to interleave.
32963296
if (VecTy->isScalableTy()) {
3297-
assert(Factor <= 8 && "Unsupported interelave factor for scalable vectors");
3297+
assert(Factor <= 8 && "Unsupported interleave factor for scalable vectors");
32983298
VectorType *InterleaveTy =
32993299
VectorType::get(VecTy->getElementType(),
33003300
VecTy->getElementCount().multiplyCoefficientBy(Factor));

0 commit comments

Comments
 (0)