diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2019-11-18 14:54:06 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2019-11-18 14:54:06 -0300 |
commit | 5f83fb658206d195e54d3574b989ce5285a5b18f (patch) | |
tree | 2049d60a21ae33407c13c5e8452b539ae250b2f2 /lvm.c | |
parent | 679dc72c08a7c563a0c3f463332d6f22d573a106 (diff) | |
download | lua-5f83fb658206d195e54d3574b989ce5285a5b18f.tar.gz lua-5f83fb658206d195e54d3574b989ce5285a5b18f.tar.bz2 lua-5f83fb658206d195e54d3574b989ce5285a5b18f.zip |
Details
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)); |