Skip to content

Commit 7f965e2

Browse files
committed
format
1 parent 4c9696a commit 7f965e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Support/KnownBits.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ KnownBits KnownBits::lshr(const KnownBits &LHS, const KnownBits &RHS,
392392
unsigned FirstOne = LHS.countMaxTrailingZeros();
393393
if (FirstOne < MinShiftAmount) {
394394
// Always poison. Return zero because we don't like returning conflict.
395-
Known.setAllZero();
395+
Known.setAllZero();
396396
return Known;
397397
}
398398
MaxShiftAmount = std::min(MaxShiftAmount, FirstOne);
@@ -981,8 +981,8 @@ KnownBits KnownBits::udiv(const KnownBits &LHS, const KnownBits &RHS,
981981
KnownBits Known(BitWidth);
982982

983983
if (LHS.isZero() || RHS.isZero()) {
984-
// Result is either known Zero or UB. Return Zero either way.
985-
Known.setAllZero();
984+
// Result is either known Zero or UB. Return Zero either way.
985+
Known.setAllZero();
986986
return Known;
987987
}
988988

0 commit comments

Comments
 (0)