diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-04-30 14:42:21 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-04-30 14:42:21 -0300 |
commit | d7bc346d7a9da097e517fa987ed6cc4f91874111 (patch) | |
tree | edcc5e43f78084681f8e9f4498e12ac0974b9db3 /lvm.c | |
parent | 673c456cbaf8d37e9e71afd2bedc00654235f90d (diff) | |
download | lua-d7bc346d7a9da097e517fa987ed6cc4f91874111.tar.gz lua-d7bc346d7a9da097e517fa987ed6cc4f91874111.tar.bz2 lua-d7bc346d7a9da097e517fa987ed6cc4f91874111.zip |
no more code checking
Diffstat (limited to 'lvm.c')
-rw-r--r-- | lvm.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.c,v 2.85 2009/04/17 14:28:06 roberto Exp roberto $ | 2 | ** $Id: lvm.c,v 2.86 2009/04/17 22:00:01 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -468,7 +468,6 @@ void luaV_execute (lua_State *L) { | |||
468 | ra = RA(i); | 468 | ra = RA(i); |
469 | lua_assert(base == ci->base && base == L->base); | 469 | lua_assert(base == ci->base && base == L->base); |
470 | lua_assert(base <= L->top && L->top <= L->stack + L->stacksize); | 470 | lua_assert(base <= L->top && L->top <= L->stack + L->stacksize); |
471 | lua_assert(L->top == ci->top || luaG_checkopenop(i)); | ||
472 | switch (GET_OPCODE(i)) { | 471 | switch (GET_OPCODE(i)) { |
473 | case OP_MOVE: { | 472 | case OP_MOVE: { |
474 | setobjs2s(L, ra, RB(i)); | 473 | setobjs2s(L, ra, RB(i)); |