We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 947e369 commit 8f6b1ccCopy full SHA for 8f6b1cc
llvm/lib/Transforms/Vectorize/VectorCombine.cpp
@@ -1479,7 +1479,8 @@ bool VectorCombine::foldConcatOfBoolMasks(Instruction &I) {
1479
return false;
1480
1481
auto *ConcatTy = FixedVectorType::getDoubleElementsVectorType(MaskTy);
1482
- auto *ConcatIntTy = Type::getIntNTy(Ty->getContext(), ConcatTy->getNumElements());
+ auto *ConcatIntTy =
1483
+ Type::getIntNTy(Ty->getContext(), ConcatTy->getNumElements());
1484
auto *MaskIntTy = Type::getIntNTy(Ty->getContext(), ShAmtDiff);
1485
1486
SmallVector<int, 32> ConcatMask(ConcatTy->getNumElements());
0 commit comments