diff mbox

[08/10] bitops: Inline bitops_flsl

Message ID 1360806463-23632-9-git-send-email-rth@twiddle.net
State New
Headers show

Commit Message

Richard Henderson Feb. 14, 2013, 1:47 a.m. UTC
This is the only remaining user.

Signed-off-by: Richard Henderson <rth@twiddle.net>
---
 util/bitops.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/util/bitops.c b/util/bitops.c
index 9cd1c3a..50b4a81 100644
--- a/util/bitops.c
+++ b/util/bitops.c
@@ -133,7 +133,7 @@  unsigned long find_last_bit(const unsigned long *addr, unsigned long size)
         tmp = addr[--words];
         if (tmp) {
         found:
-            return words * BITS_PER_LONG + bitops_flsl(tmp);
+            return words * BITS_PER_LONG + BITS_PER_LONG - 1 - clzl(tmp);
         }
     }