pike.git/
src/
docode.c
Branch:
Tag:
Non-build tags
All tags
No tags
2014-12-04
2014-12-04 19:26:11 by Per Hedbor <ph@opera.com>
97410c5192daa930abb15633d802d9633e90f2b2 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
bill/master_archive_support
Tweak: Made a function static
339:
} }
-
void do_cond_jump(node *n, int label, int iftrue, int flags)
+
static
void do_cond_jump(node *n, int label, int iftrue, int flags)
{ iftrue=!!iftrue; if((flags & DO_POP) && node_is_tossable(n))
442:
return 1; }
-
static
INLINE
struct compiler_frame *find_local_frame(INT32 depth)
+
static struct compiler_frame *find_local_frame(INT32 depth)
{ struct compiler_frame *f=Pike_compiler->compiler_frame; while(--depth>=0) f=f->previous;