From 65f4a0f636eede0f026d0205ac929bc5a56f8b9c Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy <roberto@inf.puc-rio.br> Date: Wed, 4 May 2005 17:42:28 -0300 Subject: no more compatibility code for traversing tables --- lopcodes.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lopcodes.c') diff --git a/lopcodes.c b/lopcodes.c index 16be5a56..0d3017f6 100644 --- a/lopcodes.c +++ b/lopcodes.c @@ -1,5 +1,5 @@ /* -** $Id: lopcodes.c,v 1.31 2005/03/08 18:00:16 roberto Exp roberto $ +** $Id: lopcodes.c,v 1.32 2005/03/16 16:59:21 roberto Exp roberto $ ** See Copyright Notice in lua.h */ @@ -49,7 +49,6 @@ const char *const luaP_opnames[NUM_OPCODES+1] = { "FORLOOP", "FORPREP", "TFORLOOP", - "TFORPREP", "SETLIST", "CLOSE", "CLOSURE", @@ -95,7 +94,6 @@ const lu_byte luaP_opmodes[NUM_OPCODES] = { ,opmode(0, 1, OpArgR, OpArgN, iAsBx) /* OP_FORLOOP */ ,opmode(0, 1, OpArgR, OpArgN, iAsBx) /* OP_FORPREP */ ,opmode(1, 0, OpArgN, OpArgU, iABC) /* OP_TFORLOOP */ - ,opmode(0, 0, OpArgR, OpArgN, iAsBx) /* OP_TFORPREP */ ,opmode(0, 0, OpArgU, OpArgU, iABC) /* OP_SETLIST */ ,opmode(0, 0, OpArgN, OpArgN, iABC) /* OP_CLOSE */ ,opmode(0, 1, OpArgU, OpArgN, iABx) /* OP_CLOSURE */ -- cgit v1.2.3-55-g6feb