pike.git/
src/
docode.c
Branch:
Tag:
Non-build tags
All tags
No tags
2014-05-08
2014-05-08 10:57:09 by Per Hedbor <ph@opera.com>
b662d900e69643175068a4ce89d8e7be843d8829 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
8.0
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;