diff options
Diffstat (limited to 'gcc/hwint.c')
-rw-r--r-- | gcc/hwint.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc/hwint.c b/gcc/hwint.c index bfc5e3dedcd..b7bcfa59740 100644 --- a/gcc/hwint.c +++ b/gcc/hwint.c @@ -107,6 +107,23 @@ ffs_hwi (unsigned HOST_WIDE_INT x) return 1 + floor_log2 (x & -x); } +/* Return the number of set bits in X. */ + +int +popcount_hwi (unsigned HOST_WIDE_INT x) +{ + int i, ret = 0; + size_t bits = sizeof (x) * CHAR_BIT; + + for (i = 0; i < bits; i += 1) + { + ret += x & 1; + x >>= 1; + } + + return ret; +} + #endif /* GCC_VERSION < 3004 */ /* Compute the absolute value of X. */ |