pike.git/
src/
interpret_functions.h
Branch:
Tag:
Non-build tags
All tags
No tags
2012-06-28
2012-06-28 21:52:56 by Per Hedbor <ph@opera.com>
3da833e69f9200610d90ea695e77feb2c6a9e337 (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Initialize num_args and num_locals for RECURSE as well in debug mode.
2568:
new_frame->args = args; \ new_frame->locals=new_frame->save_sp=new_frame->expendible=Pike_sp-args; \ new_frame->save_mark_sp = new_frame->mark_sp_base = Pike_mark_sp; \
-
\
+
DO_IF_DEBUG(new_frame->num_args=0;new_frame->num_locals=0;);
\
SET_PROG_COUNTER(addr); \ new_frame->fun=Pike_fp->fun; \ DO_IF_PROFILING( new_frame->ident=Pike_fp->ident ); \