aboutsummaryrefslogtreecommitdiff
path: root/src/lj_snap.c
diff options
context:
space:
mode:
authorMike Pall <mike>2012-07-02 22:52:15 +0200
committerMike Pall <mike>2012-07-02 22:52:15 +0200
commitafeb4e2c510ae70e0885d537cd4fb277a5d5de57 (patch)
treea7c7029e43afdb0fc17d39a4dd283a1abe91cefe /src/lj_snap.c
parentf093a34a2f7a80b8a85880864dac2f3dad814f51 (diff)
downloadluajit-afeb4e2c510ae70e0885d537cd4fb277a5d5de57.tar.gz
luajit-afeb4e2c510ae70e0885d537cd4fb277a5d5de57.tar.bz2
luajit-afeb4e2c510ae70e0885d537cd4fb277a5d5de57.zip
Handle initial snapshot for side traces in lj_snap.c only.
Diffstat (limited to '')
-rw-r--r--src/lj_snap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_snap.c b/src/lj_snap.c
index 11d7ad0c..33edc8a6 100644
--- a/src/lj_snap.c
+++ b/src/lj_snap.c
@@ -413,6 +413,7 @@ void lj_snap_replay(jit_State *J, GCtrace *T)
413 } 413 }
414 J->base = J->slot + J->baseslot; 414 J->base = J->slot + J->baseslot;
415 J->maxslot = snap->nslots - J->baseslot; 415 J->maxslot = snap->nslots - J->baseslot;
416 lj_snap_add(J);
416} 417}
417 418
418/* -- Snapshot restore ---------------------------------------------------- */ 419/* -- Snapshot restore ---------------------------------------------------- */