diff options
Diffstat (limited to 'lopcodes.c')
-rw-r--r-- | lopcodes.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.c,v 1.31 2005/03/08 18:00:16 roberto Exp roberto $ | 2 | ** $Id: lopcodes.c,v 1.32 2005/03/16 16:59:21 roberto Exp roberto $ |
3 | ** See Copyright Notice in lua.h | 3 | ** See Copyright Notice in lua.h |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -49,7 +49,6 @@ const char *const luaP_opnames[NUM_OPCODES+1] = { | |||
49 | "FORLOOP", | 49 | "FORLOOP", |
50 | "FORPREP", | 50 | "FORPREP", |
51 | "TFORLOOP", | 51 | "TFORLOOP", |
52 | "TFORPREP", | ||
53 | "SETLIST", | 52 | "SETLIST", |
54 | "CLOSE", | 53 | "CLOSE", |
55 | "CLOSURE", | 54 | "CLOSURE", |
@@ -95,7 +94,6 @@ const lu_byte luaP_opmodes[NUM_OPCODES] = { | |||
95 | ,opmode(0, 1, OpArgR, OpArgN, iAsBx) /* OP_FORLOOP */ | 94 | ,opmode(0, 1, OpArgR, OpArgN, iAsBx) /* OP_FORLOOP */ |
96 | ,opmode(0, 1, OpArgR, OpArgN, iAsBx) /* OP_FORPREP */ | 95 | ,opmode(0, 1, OpArgR, OpArgN, iAsBx) /* OP_FORPREP */ |
97 | ,opmode(1, 0, OpArgN, OpArgU, iABC) /* OP_TFORLOOP */ | 96 | ,opmode(1, 0, OpArgN, OpArgU, iABC) /* OP_TFORLOOP */ |
98 | ,opmode(0, 0, OpArgR, OpArgN, iAsBx) /* OP_TFORPREP */ | ||
99 | ,opmode(0, 0, OpArgU, OpArgU, iABC) /* OP_SETLIST */ | 97 | ,opmode(0, 0, OpArgU, OpArgU, iABC) /* OP_SETLIST */ |
100 | ,opmode(0, 0, OpArgN, OpArgN, iABC) /* OP_CLOSE */ | 98 | ,opmode(0, 0, OpArgN, OpArgN, iABC) /* OP_CLOSE */ |
101 | ,opmode(0, 1, OpArgU, OpArgN, iABx) /* OP_CLOSURE */ | 99 | ,opmode(0, 1, OpArgU, OpArgN, iABx) /* OP_CLOSURE */ |