diff options
author | Mike Pall <mike> | 2020-06-13 00:52:54 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2020-06-15 02:52:00 +0200 |
commit | 8ae5170cdc9c307bd81019b3e014391c9fd00581 (patch) | |
tree | ccf9f17035d0754c1758faee209e9a26b4e03418 /src/lj_snap.h | |
parent | 8b55054473452963f24b01efb7c4cc72497c74ec (diff) | |
download | luajit-8ae5170cdc9c307bd81019b3e014391c9fd00581.tar.gz luajit-8ae5170cdc9c307bd81019b3e014391c9fd00581.tar.bz2 luajit-8ae5170cdc9c307bd81019b3e014391c9fd00581.zip |
Improve assertions.
Diffstat (limited to 'src/lj_snap.h')
-rw-r--r-- | src/lj_snap.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lj_snap.h b/src/lj_snap.h index 816a9b79..f1760b05 100644 --- a/src/lj_snap.h +++ b/src/lj_snap.h | |||
@@ -13,7 +13,8 @@ | |||
13 | LJ_FUNC void lj_snap_add(jit_State *J); | 13 | LJ_FUNC void lj_snap_add(jit_State *J); |
14 | LJ_FUNC void lj_snap_purge(jit_State *J); | 14 | LJ_FUNC void lj_snap_purge(jit_State *J); |
15 | LJ_FUNC void lj_snap_shrink(jit_State *J); | 15 | LJ_FUNC void lj_snap_shrink(jit_State *J); |
16 | LJ_FUNC IRIns *lj_snap_regspmap(GCtrace *T, SnapNo snapno, IRIns *ir); | 16 | LJ_FUNC IRIns *lj_snap_regspmap(jit_State *J, GCtrace *T, SnapNo snapno, |
17 | IRIns *ir); | ||
17 | LJ_FUNC void lj_snap_replay(jit_State *J, GCtrace *T); | 18 | LJ_FUNC void lj_snap_replay(jit_State *J, GCtrace *T); |
18 | LJ_FUNC const BCIns *lj_snap_restore(jit_State *J, void *exptr); | 19 | LJ_FUNC const BCIns *lj_snap_restore(jit_State *J, void *exptr); |
19 | LJ_FUNC void lj_snap_grow_buf_(jit_State *J, MSize need); | 20 | LJ_FUNC void lj_snap_grow_buf_(jit_State *J, MSize need); |