pike.git/
src/
interpret_functions.h
Branch:
Tag:
Non-build tags
All tags
No tags
2012-06-19
2012-06-19 12:40:18 by Henrik Grubbström (Grubba) <grubba@grubba.org>
06088c03332902e2408ddde9dcbffc52dfc11cfa (
2
lines) (+
2
/-
0
)
[
Show
|
Annotate
]
Branch:
7.9
Runtime: Fixed bug in opcode F_RETURN_LOCAL when PIKE_DEBUG.
1642:
if(Pike_fp->expendible <= Pike_fp->locals + arg1) { pop_n_elems(Pike_sp-1 - (Pike_fp->locals + arg1));
+
DO_IF_DEBUG(Pike_fp->num_locals = arg1);
}else{ push_svalue(Pike_fp->locals + arg1); }