Skip to content

Commit 29db457

Browse files
committed
Remove {} and empty line
1 parent 2b91f9e commit 29db457

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

llvm/lib/CodeGen/GlobalISel/GISelValueTracking.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -659,9 +659,8 @@ void GISelValueTracking::computeKnownBitsImpl(Register R, KnownBits &Known,
659659
const unsigned NumSrcElts = VecVT.getNumElements();
660660
// A return type different from the vector's element type may lead to
661661
// issues with pattern selection. Bail out to avoid that.
662-
if (BitWidth > EltBitWidth) {
662+
if (BitWidth > EltBitWidth)
663663
break;
664-
}
665664

666665
Known.Zero.setAllBits();
667666
Known.One.setAllBits();
@@ -674,7 +673,6 @@ void GISelValueTracking::computeKnownBitsImpl(Register R, KnownBits &Known,
674673
APInt::getOneBitSet(NumSrcElts, ConstEltNo->getZExtValue());
675674

676675
computeKnownBitsImpl(InVec, Known, DemandedSrcElts, Depth + 1);
677-
678676
break;
679677
}
680678
case TargetOpcode::G_SHUFFLE_VECTOR: {

0 commit comments

Comments
 (0)