aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c
index 1741f908396..2a64c1bbf82 100644
--- a/src/data.c
+++ b/src/data.c
@@ -3012,7 +3012,7 @@ count_one_bits_word (bits_word w)
3012 { 3012 {
3013 int i = 0, count = 0; 3013 int i = 0, count = 0;
3014 while (count += count_one_bits_ll (w), 3014 while (count += count_one_bits_ll (w),
3015 BITS_PER_BITS_WORD <= (i += BITS_PER_ULL)) 3015 (i += BITS_PER_ULL) < BITS_PER_BITS_WORD)
3016 w = shift_right_ull (w); 3016 w = shift_right_ull (w);
3017 return count; 3017 return count;
3018 } 3018 }