1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00

Small correction in luaP_opmodes

OP_VARARGPREP neither sets nor uses L->top.
This commit is contained in:
Roberto I
2026-04-29 15:17:55 -03:00
parent 0da6d320f7
commit 36c1f6d949
+1 -1
View File
@@ -104,7 +104,7 @@ LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = {
,opmode(0, 1, 0, 0, 1, iABC) /* OP_VARARG */
,opmode(0, 0, 0, 0, 1, iABC) /* OP_GETVARG */
,opmode(0, 0, 0, 0, 0, iABx) /* OP_ERRNNIL */
,opmode(0, 0, 1, 0, 0, iABC) /* OP_VARARGPREP */
,opmode(0, 0, 0, 0, 0, iABC) /* OP_VARARGPREP */
,opmode(0, 0, 0, 0, 0, iAx) /* OP_EXTRAARG */
};