summaryrefslogtreecommitdiff
path: root/util/bitops.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2013-02-13 17:47:42 -0800
committerBlue Swirl <blauwirbel@gmail.com>2013-02-16 11:12:45 +0000
commit0f9d8bd386c9b7b17fc68fef36caa81750c39494 (patch)
tree515593113ff05794996b4aa385258a7bff1cb210 /util/bitops.c
parent4932398fac273b8ebe5688bc4b79407a7f41edbd (diff)
downloadqemu-0f9d8bd386c9b7b17fc68fef36caa81750c39494.tar.gz
bitops: Replace bitops_ctol with ctzl
The is the only remaining user. Signed-off-by: Richard Henderson <rth@twiddle.net> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'util/bitops.c')
-rw-r--r--util/bitops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/bitops.c b/util/bitops.c
index 50b4a811a6..e72237ab2b 100644
--- a/util/bitops.c
+++ b/util/bitops.c
@@ -109,7 +109,7 @@ found_first:
return result + size; /* Nope. */
}
found_middle:
- return result + bitops_ctol(tmp);
+ return result + ctzl(~tmp);
}
unsigned long find_last_bit(const unsigned long *addr, unsigned long size)