diff options
Diffstat (limited to 'lcode.c')
-rw-r--r-- | lcode.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lcode.c,v 1.56 2001/01/15 16:13:24 roberto Exp roberto $ | 2 | ** $Id: lcode.c,v 1.57 2001/01/19 13:20:30 roberto Exp roberto $ |
3 | ** Code generator for Lua | 3 | ** Code generator for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -698,8 +698,8 @@ const OpProperties luaK_opproperties[NUM_OPCODES] = { | |||
698 | {iO, 0, 0}, /* OP_PUSHNILJMP */ | 698 | {iO, 0, 0}, /* OP_PUSHNILJMP */ |
699 | {iS, 0, 0}, /* OP_FORPREP */ | 699 | {iS, 0, 0}, /* OP_FORPREP */ |
700 | {iS, 0, 3}, /* OP_FORLOOP */ | 700 | {iS, 0, 3}, /* OP_FORLOOP */ |
701 | {iS, 2, 0}, /* OP_LFORPREP */ | 701 | {iS, 3, 0}, /* OP_LFORPREP */ |
702 | {iS, 0, 3}, /* OP_LFORLOOP */ | 702 | {iS, 0, 4}, /* OP_LFORLOOP */ |
703 | {iAB, VD, 0} /* OP_CLOSURE */ | 703 | {iAB, VD, 0} /* OP_CLOSURE */ |
704 | }; | 704 | }; |
705 | 705 | ||