diff options
Diffstat (limited to 'lopcodes.c')
-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.57 2017/04/26 17:46:52 roberto Exp roberto $ | 2 | ** $Id: lopcodes.c,v 1.58 2017/04/28 20:57:45 roberto Exp roberto $ |
3 | ** Opcodes for Lua virtual machine | 3 | ** Opcodes for Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -130,7 +130,7 @@ LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = { | |||
130 | ,opmode(0, 1, OpArgR, OpArgN, iAsBx) /* OP_TFORLOOP */ | 130 | ,opmode(0, 1, OpArgR, OpArgN, iAsBx) /* OP_TFORLOOP */ |
131 | ,opmode(0, 0, OpArgU, OpArgU, iABC) /* OP_SETLIST */ | 131 | ,opmode(0, 0, OpArgU, OpArgU, iABC) /* OP_SETLIST */ |
132 | ,opmode(0, 1, OpArgU, OpArgN, iABx) /* OP_CLOSURE */ | 132 | ,opmode(0, 1, OpArgU, OpArgN, iABx) /* OP_CLOSURE */ |
133 | ,opmode(0, 1, OpArgU, OpArgN, iABC) /* OP_VARARG */ | 133 | ,opmode(0, 1, OpArgU, OpArgR, iABC) /* OP_VARARG */ |
134 | ,opmode(0, 0, OpArgU, OpArgU, iAx) /* OP_EXTRAARG */ | 134 | ,opmode(0, 0, OpArgU, OpArgU, iAx) /* OP_EXTRAARG */ |
135 | }; | 135 | }; |
136 | 136 | ||