aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lj_record.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lj_record.c b/src/lj_record.c
index c2d02745..1a2b1c5d 100644
--- a/src/lj_record.c
+++ b/src/lj_record.c
@@ -731,6 +731,8 @@ void lj_record_call(jit_State *J, BCReg func, ptrdiff_t nargs)
731 J->framedepth++; 731 J->framedepth++;
732 J->base += func+1+LJ_FR2; 732 J->base += func+1+LJ_FR2;
733 J->baseslot += func+1+LJ_FR2; 733 J->baseslot += func+1+LJ_FR2;
734 if (J->baseslot + J->maxslot >= LJ_MAX_JSLOTS)
735 lj_trace_err(J, LJ_TRERR_STACKOV);
734} 736}
735 737
736/* Record tail call. */ 738/* Record tail call. */