diff options
| author | Roberto I <roberto@inf.puc-rio.br> | 2025-08-20 14:31:07 -0300 |
|---|---|---|
| committer | Roberto I <roberto@inf.puc-rio.br> | 2025-08-20 14:31:07 -0300 |
| commit | 88aa4049ad3e638571bfffcf5fd8b6a8e07c6aaf (patch) | |
| tree | 00f92e5383964ce918cdaa9a5d7a3eaeeb8bbbcf /lopcodes.c | |
| parent | c688b00f73205273c46d7cf5656ff5a27e90ce36 (diff) | |
| download | lua-88aa4049ad3e638571bfffcf5fd8b6a8e07c6aaf.tar.gz lua-88aa4049ad3e638571bfffcf5fd8b6a8e07c6aaf.tar.bz2 lua-88aa4049ad3e638571bfffcf5fd8b6a8e07c6aaf.zip | |
Keep the order left-right in shifts
Opcodes OP_SHLI-OP_SHRI and the cases for opcodes OP_SHL-OP_SHR were
out of order.
Diffstat (limited to '')
| -rw-r--r-- | lopcodes.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -53,8 +53,8 @@ LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = { | |||
| 53 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_BANDK */ | 53 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_BANDK */ |
| 54 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_BORK */ | 54 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_BORK */ |
| 55 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_BXORK */ | 55 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_BXORK */ |
| 56 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_SHRI */ | ||
| 57 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_SHLI */ | 56 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_SHLI */ |
| 57 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_SHRI */ | ||
| 58 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_ADD */ | 58 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_ADD */ |
| 59 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_SUB */ | 59 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_SUB */ |
| 60 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_MUL */ | 60 | ,opmode(0, 0, 0, 0, 1, iABC) /* OP_MUL */ |
