diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-10-25 17:14:14 -0200 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-10-25 17:14:14 -0200 |
| commit | 21aa7e55f2333e57b972aa4ef2c5e2785d609578 (patch) | |
| tree | bdd6119f0fab0178979202bc5d0afbd6f4410469 /lopcodes.c | |
| parent | fffb6f3814084cddd8a58e81ae1b73ed78ea0953 (diff) | |
| download | lua-21aa7e55f2333e57b972aa4ef2c5e2785d609578.tar.gz lua-21aa7e55f2333e57b972aa4ef2c5e2785d609578.tar.bz2 lua-21aa7e55f2333e57b972aa4ef2c5e2785d609578.zip | |
optimization for array part of a Table
Diffstat (limited to '')
| -rw-r--r-- | lopcodes.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lopcodes.c,v 1.3 2001/08/27 15:14:57 roberto Exp $ | 2 | ** $Id: lopcodes.c,v 1.5 2001/09/07 17:39:10 roberto Exp $ |
| 3 | ** extracted automatically from lopcodes.h by mkprint.lua | 3 | ** extracted automatically from lopcodes.h by mkprint.lua |
| 4 | ** DO NOT EDIT | 4 | ** DO NOT EDIT |
| 5 | ** See Copyright Notice in lua.h | 5 | ** See Copyright Notice in lua.h |
| @@ -77,7 +77,7 @@ const lu_byte luaP_opmodes[NUM_OPCODES] = { | |||
| 77 | ,opmode(0,0,0,0, 0,1,iABc) /* OP_SETGLOBAL */ | 77 | ,opmode(0,0,0,0, 0,1,iABc) /* OP_SETGLOBAL */ |
| 78 | ,opmode(0,0,0,0, 0,0,iABC) /* OP_SETUPVAL */ | 78 | ,opmode(0,0,0,0, 0,0,iABC) /* OP_SETUPVAL */ |
| 79 | ,opmode(0,0,1,1, 0,0,iABC) /* OP_SETTABLE */ | 79 | ,opmode(0,0,1,1, 0,0,iABC) /* OP_SETTABLE */ |
| 80 | ,opmode(0,0,0,0, 1,0,iABc) /* OP_NEWTABLE */ | 80 | ,opmode(0,0,0,0, 1,0,iABC) /* OP_NEWTABLE */ |
| 81 | ,opmode(0,0,1,1, 1,0,iABC) /* OP_SELF */ | 81 | ,opmode(0,0,1,1, 1,0,iABC) /* OP_SELF */ |
| 82 | ,opmode(0,0,1,1, 1,0,iABC) /* OP_ADD */ | 82 | ,opmode(0,0,1,1, 1,0,iABC) /* OP_ADD */ |
| 83 | ,opmode(0,0,1,1, 1,0,iABC) /* OP_SUB */ | 83 | ,opmode(0,0,1,1, 1,0,iABC) /* OP_SUB */ |
