Skip to content

Commit 9e8043b

Browse files
committed
Fix formatting
1 parent 96340c5 commit 9e8043b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Transforms/Vectorize/VectorCombine.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1929,7 +1929,8 @@ bool VectorCombine::foldShuffleToIdentity(Instruction &I) {
19291929
// TODO: Handle vector widening/narrowing bitcasts.
19301930
auto *DstTy = dyn_cast<FixedVectorType>(BitCast->getDestTy());
19311931
auto *SrcTy = dyn_cast<FixedVectorType>(BitCast->getSrcTy());
1932-
if (DstTy && SrcTy && SrcTy->getNumElements() == DstTy->getNumElements()) {
1932+
if (DstTy && SrcTy &&
1933+
SrcTy->getNumElements() == DstTy->getNumElements()) {
19331934
Worklist.push_back(generateInstLaneVectorFromOperand(Item, 0));
19341935
continue;
19351936
}

0 commit comments

Comments
 (0)