pike.git/
src/
interpret.c
Branch:
Tag:
Non-build tags
All tags
No tags
2017-11-19
2017-11-19 10:43:46 by Arne Goedeke <el@laramies.com>
d71570e4a243cbbacb243c76968ba84c1c3ecfd3 (
7
lines) (+
7
/-
0
)
[
Show
|
Annotate
]
Branch:
arne/faster_calls_again
Interpreter: added extra debug checks
3509:
if (!pop) return;
+
#ifdef PIKE_DEBUG
+
if (pop < 0) {
+
Pike_fatal("Trying to pop negative number of locals: %ld.\n", pop);
+
}
+
#endif
+
free_svalues(save_sp, pop, T_MIXED); Pike_sp -= pop;