aboutsummaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2010-08-05 12:41:31 -0700
committerRichard Henderson <rth@gcc.gnu.org>2010-08-05 12:41:31 -0700
commitbd95721f862876dac7d1560806b18015bb5bbeb6 (patch)
treeebb0bcbba694540435097fb9c41ec0f70c57ab41 /gcc/combine.c
parent55b324a67cf91568372f4e93c7dae01a572de9f4 (diff)
downloadgcc-bd95721f862876dac7d1560806b18015bb5bbeb6.zip
gcc-bd95721f862876dac7d1560806b18015bb5bbeb6.tar.gz
gcc-bd95721f862876dac7d1560806b18015bb5bbeb6.tar.bz2
Replace exact_log2(x & -x) in favor of more direct computation.
* toplev.h (ctz_hwi, clz_hwi, ffs_hwi): New. (floor_log2): Use clz_hwi. (exact_log2): Use ctz_hwi. * toplev.c (ctz_hwi, clz_hwi, ffs_hwi): New. * builtins.c (fold_builtin_bitop): Use them. * simplify-rtx.c (simplify_const_unary_operation): Likewise. * combine.c (get_pos_from_mask): Use ctz_hwi. * double-int.c (double_int_ctz): Likewise. * explow.c (force_reg): Likewise. * tree.h (SET_DECL_OFFSET_ALIGN): Use ffs_hwi. From-SVN: r162920
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index 0725c86..41a0ec1 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -7436,7 +7436,7 @@ static int
get_pos_from_mask (unsigned HOST_WIDE_INT m, unsigned HOST_WIDE_INT *plen)
{
/* Get the bit number of the first 1 bit from the right, -1 if none. */
- int pos = exact_log2 (m & -m);
+ int pos = m ? ctz_hwi (m) : -1;
int len = 0;
if (pos >= 0)