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.48 2000/08/14 17:46:27 roberto Exp roberto $ | 2 | ** $Id: lcode.c,v 1.49 2000/08/15 13:18:28 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 | */ |
@@ -693,8 +693,8 @@ const struct OpProperties luaK_opproperties[NUM_OPCODES] = { | |||
693 | {iO, 0, 0}, /* OP_PUSHNILJMP */ | 693 | {iO, 0, 0}, /* OP_PUSHNILJMP */ |
694 | {iS, 0, 0}, /* OP_FORPREP */ | 694 | {iS, 0, 0}, /* OP_FORPREP */ |
695 | {iS, 0, 3}, /* OP_FORLOOP */ | 695 | {iS, 0, 3}, /* OP_FORLOOP */ |
696 | {iS, 3, 0}, /* OP_LFORPREP */ | 696 | {iS, 2, 0}, /* OP_LFORPREP */ |
697 | {iS, 0, 4}, /* OP_LFORLOOP */ | 697 | {iS, 0, 3}, /* OP_LFORLOOP */ |
698 | {iAB, VD, 0} /* OP_CLOSURE */ | 698 | {iAB, VD, 0} /* OP_CLOSURE */ |
699 | }; | 699 | }; |
700 | 700 | ||