diff options
Diffstat (limited to 'lvm.c')
-rw-r--r-- | lvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1082,7 +1082,7 @@ void luaV_execute (lua_State *L, CallInfo *ci) { | |||
1082 | lua_assert(base == ci->func + 1); | 1082 | lua_assert(base == ci->func + 1); |
1083 | lua_assert(base <= L->top && L->top < L->stack + L->stacksize); | 1083 | lua_assert(base <= L->top && L->top < L->stack + L->stacksize); |
1084 | /* invalidate top for instructions not expecting it */ | 1084 | /* invalidate top for instructions not expecting it */ |
1085 | lua_assert(isIT(i) || (L->top = base)); | 1085 | lua_assert(isIT(i) || (cast_void(L->top = base), 1)); |
1086 | vmdispatch (GET_OPCODE(i)) { | 1086 | vmdispatch (GET_OPCODE(i)) { |
1087 | vmcase(OP_MOVE) { | 1087 | vmcase(OP_MOVE) { |
1088 | setobjs2s(L, ra, RB(i)); | 1088 | setobjs2s(L, ra, RB(i)); |