[Support] clang-format partMSBpartMSB and partLSB (NFC)
authorKazu Hirata <kazu@google.com>
Sun, 15 Jan 2023 17:13:26 +0000 (09:13 -0800)
committerKazu Hirata <kazu@google.com>
Sun, 15 Jan 2023 17:13:26 +0000 (09:13 -0800)
llvm/lib/Support/APInt.cpp

index 3b89b01..1a2129a 100644 (file)
@@ -2292,15 +2292,11 @@ static inline APInt::WordType highHalf(APInt::WordType part) {
 
 /// Returns the bit number of the most significant set bit of a part.
 /// If the input number has no bits set -1U is returned.
-static unsigned partMSB(APInt::WordType value) {
-  return findLastSet(value);
-}
+static unsigned partMSB(APInt::WordType value) { return findLastSet(value); }
 
 /// Returns the bit number of the least significant set bit of a part.  If the
 /// input number has no bits set -1U is returned.
-static unsigned partLSB(APInt::WordType value) {
-  return findFirstSet(value);
-}
+static unsigned partLSB(APInt::WordType value) { return findFirstSet(value); }
 
 /// Sets the least significant part of a bignum to the input value, and zeroes
 /// out higher parts.