Branch: Tag:

2014-09-11

2014-09-11 07:49:27 by Stephen R. van den Berg <srb@cuci.nl>

Compilerhints.

233:      static INLINE unsigned min_magnitude(const unsigned c)   { -  return c<256 ? 0 : c<65536 ? 1 : 2; +  return LIKELY(c<256) ? 0 : LIKELY(c<65536) ? 1 : 2;   }      void low_set_index(struct pike_string *s, ptrdiff_t pos, int value)