summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/ctz.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/ctz.c b/common/ctz.c
index bb6f69624e..a2b083baa7 100644
--- a/common/ctz.c
+++ b/common/ctz.c
@@ -20,8 +20,8 @@
int __keep __ctzsi2(int x)
{
static const uint8_t MulDeBruijnBitPos[32] = {
- 0, 1, 28, 2, 29, 14, 24, 3, 30, 22, 20, 15, 25, 17, 4, 8,
- 31, 27, 13, 23, 21, 19, 16, 7, 26, 12, 18, 6, 11, 5, 10, 9
+ 0, 1, 28, 2, 29, 14, 24, 3, 30, 22, 20, 15, 25, 17, 4, 8,
+ 31, 27, 13, 23, 21, 19, 16, 7, 26, 12, 18, 6, 11, 5, 10, 9
};
return MulDeBruijnBitPos[((uint32_t)((x & -x) * 0x077CB531U)) >> 27];
}