aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/APInt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Support/APInt.cpp')
-rw-r--r--llvm/lib/Support/APInt.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp
index 3b89b01..1a2129a 100644
--- a/llvm/lib/Support/APInt.cpp
+++ b/llvm/lib/Support/APInt.cpp
@@ -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.