diff options
Diffstat (limited to 'gcc/hwint.c')
-rw-r--r-- | gcc/hwint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/hwint.c b/gcc/hwint.c index 134fe1d..9e99dd9 100644 --- a/gcc/hwint.c +++ b/gcc/hwint.c @@ -93,7 +93,7 @@ ctz_hwi (unsigned HOST_WIDE_INT x) int clz_hwi (unsigned HOST_WIDE_INT x) { - return HOST_BITS_PER_WIDE_INT - 1 - floor_log2(x); + return HOST_BITS_PER_WIDE_INT - 1 - floor_log2 (x); } /* Similar to ctz_hwi, except that the least significant bit is numbered |