Branch: Tag:

2011-05-02

2011-05-02 01:50:19 by Per Hedbor <ph@opera.com>

Since array.c is the only place the is_more_than_one_bit function is used, and it is, unlike many of our macros, suitable for inlining, inline it.

2098:    p);   }    + /* Return true for integers with more than one bit set */ + static inline int is_more_than_one_bit(unsigned INT32 x) + { +  return !!(x & (x-1)); + } +    node *make_node_from_array(struct array *a)   {    struct svalue s;