pike.git/
src/
stralloc.c
Branch:
Tag:
Non-build tags
All tags
No tags
2014-09-11
2014-09-11 07:49:27 by Stephen R. van den Berg <srb@cuci.nl>
dba22c7aea8da5eeddd51ce653af9ddcbf212bb1 (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
8.0
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)