Skip to content
Snippets Groups Projects
Commit 265ce4a5 authored by Richard Henderson's avatar Richard Henderson Committed by Blue Swirl
Browse files

bitops: Use non-bitops ctzl


The use of ctz has already eliminated zero, and thus the difference
in edge conditions between the two routines is irrelevant.

Signed-off-by: default avatarRichard Henderson <rth@twiddle.net>
Reviewed-by: default avatarEric Blake <eblake@redhat.com>
Signed-off-by: default avatarBlue Swirl <blauwirbel@gmail.com>
parent 18331e7c
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ found_first:
return result + size; /* Nope. */
}
found_middle:
return result + bitops_ctzl(tmp);
return result + ctzl(tmp);
}
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment