diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2020-02-11 11:12:33 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2020-02-11 11:12:33 -0300 |
commit | 9b7987a9d1471ba94764286b28e0998f73deb46a (patch) | |
tree | b24e2836a29621521d65e6dc77fb39bdc4b627ee /lopcodes.c | |
parent | 28ef7061bbcce39590c97a2ad662e0b60f7adab5 (diff) | |
download | lua-9b7987a9d1471ba94764286b28e0998f73deb46a.tar.gz lua-9b7987a9d1471ba94764286b28e0998f73deb46a.tar.bz2 lua-9b7987a9d1471ba94764286b28e0998f73deb46a.zip |
OP_LOADFALSE broken in two instructions
Diffstat (limited to 'lopcodes.c')
-rw-r--r-- | lopcodes.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -25,6 +25,7 @@ LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = { | |||
25 | ,opmode(0, 0, 0, 0, 1, iABx) /* OP_LOADK */ | 25 | ,opmode(0, 0, 0, 0, 1, iABx) /* OP_LOADK */ |
26 | ,opmode(0, 0, 0, 0, 1, iABx) /* OP_LOADKX */ | 26 | ,opmode(0, 0, 0, 0, 1, iABx) /* OP_LOADKX */ |
27 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_LOADFALSE */ | 27 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_LOADFALSE */ |
28 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_LFALSESKIP */ | ||
28 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_LOADTRUE */ | 29 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_LOADTRUE */ |
29 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_LOADNIL */ | 30 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_LOADNIL */ |
30 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_GETUPVAL */ | 31 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_GETUPVAL */ |