Skip to content

Commit c0914b2

Browse files
committed
[DAG] Run clang-format to fix buildbot failures
1 parent fd8d593 commit c0914b2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1797,10 +1797,10 @@ bool TargetLowering::SimplifyDemandedBits(
17971797
return true;
17981798
assert(!Known.hasConflict() && "Bits known to be one AND zero?");
17991799

1800-
Known = KnownBits::shl(Known,
1801-
KnownBits::makeConstant(APInt(BitWidth, ShAmt)),
1802-
/* NUW */ Op->getFlags().hasNoUnsignedWrap(),
1803-
/* NSW */ Op->getFlags().hasNoSignedWrap());
1800+
Known =
1801+
KnownBits::shl(Known, KnownBits::makeConstant(APInt(BitWidth, ShAmt)),
1802+
/* NUW */ Op->getFlags().hasNoUnsignedWrap(),
1803+
/* NSW */ Op->getFlags().hasNoSignedWrap());
18041804

18051805
// Attempt to avoid multi-use ops if we don't need anything from them.
18061806
if (!InDemandedMask.isAllOnes() || !DemandedElts.isAllOnes()) {

0 commit comments

Comments
 (0)