diff options
author | Mike Pall <mike> | 2021-09-19 17:18:16 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2021-09-19 17:18:16 +0200 |
commit | 9211f0b03b88ecad195e56683c769e93e284dcd3 (patch) | |
tree | e8c289851df23c0275fc0b18de2830b5f31c0406 /src/lj_record.h | |
parent | f2d333c1ac0f33fe5a7386d4e66f0f6c57c2616e (diff) | |
download | luajit-9211f0b03b88ecad195e56683c769e93e284dcd3.tar.gz luajit-9211f0b03b88ecad195e56683c769e93e284dcd3.tar.bz2 luajit-9211f0b03b88ecad195e56683c769e93e284dcd3.zip |
Refactor IR_VLOAD to take an offset.
Diffstat (limited to 'src/lj_record.h')
-rw-r--r-- | src/lj_record.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_record.h b/src/lj_record.h index 03d84a71..3bf461c8 100644 --- a/src/lj_record.h +++ b/src/lj_record.h | |||
@@ -30,7 +30,7 @@ LJ_FUNC int lj_record_objcmp(jit_State *J, TRef a, TRef b, | |||
30 | cTValue *av, cTValue *bv); | 30 | cTValue *av, cTValue *bv); |
31 | LJ_FUNC void lj_record_stop(jit_State *J, TraceLink linktype, TraceNo lnk); | 31 | LJ_FUNC void lj_record_stop(jit_State *J, TraceLink linktype, TraceNo lnk); |
32 | LJ_FUNC TRef lj_record_constify(jit_State *J, cTValue *o); | 32 | LJ_FUNC TRef lj_record_constify(jit_State *J, cTValue *o); |
33 | LJ_FUNC TRef lj_record_vload(jit_State *J, TRef ref, IRType t); | 33 | LJ_FUNC TRef lj_record_vload(jit_State *J, TRef ref, MSize idx, IRType t); |
34 | 34 | ||
35 | LJ_FUNC void lj_record_call(jit_State *J, BCReg func, ptrdiff_t nargs); | 35 | LJ_FUNC void lj_record_call(jit_State *J, BCReg func, ptrdiff_t nargs); |
36 | LJ_FUNC void lj_record_tailcall(jit_State *J, BCReg func, ptrdiff_t nargs); | 36 | LJ_FUNC void lj_record_tailcall(jit_State *J, BCReg func, ptrdiff_t nargs); |