aboutsummaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lvm.c b/lvm.c
index 940a15e6..4bc8ee81 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1180,8 +1180,8 @@ void luaV_execute (lua_State *L, CallInfo *ci) {
1180 #endif 1180 #endif
1181 lua_assert(base == ci->func.p + 1); 1181 lua_assert(base == ci->func.p + 1);
1182 lua_assert(base <= L->top.p && L->top.p <= L->stack_last.p); 1182 lua_assert(base <= L->top.p && L->top.p <= L->stack_last.p);
1183 /* invalidate top for instructions not expecting it */ 1183 /* for tests, invalidate top for instructions not expecting it */
1184 lua_assert(isIT(i) || (cast_void(L->top.p = base), 1)); 1184 lua_assert(luaP_isIT(i) || (cast_void(L->top.p = base), 1));
1185 vmdispatch (GET_OPCODE(i)) { 1185 vmdispatch (GET_OPCODE(i)) {
1186 vmcase(OP_MOVE) { 1186 vmcase(OP_MOVE) {
1187 StkId ra = RA(i); 1187 StkId ra = RA(i);