From 093c16b67b263e334600ed306310b9015f65fa8b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 27 Nov 2017 15:44:31 -0200 Subject: new opcodes 'OP_LTI' and 'OP_LEI' --- lopcodes.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lopcodes.c') diff --git a/lopcodes.c b/lopcodes.c index 05700950..122157eb 100644 --- a/lopcodes.c +++ b/lopcodes.c @@ -1,5 +1,5 @@ /* -** $Id: lopcodes.c,v 1.68 2017/11/16 12:59:14 roberto Exp roberto $ +** $Id: lopcodes.c,v 1.69 2017/11/22 18:41:20 roberto Exp roberto $ ** Opcodes for Lua virtual machine ** See Copyright Notice in lua.h */ @@ -68,6 +68,8 @@ LUAI_DDEF const char *const luaP_opnames[NUM_OPCODES+1] = { "LE", "EQK", "EQI", + "LTI", + "LEI", "TEST", "TESTSET", "CALL", @@ -137,6 +139,8 @@ LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = { ,opmode(1, 0, iABC) /* OP_LE */ ,opmode(1, 0, iABC) /* OP_EQK */ ,opmode(1, 0, iABC) /* OP_EQI */ + ,opmode(1, 0, iABC) /* OP_LTI */ + ,opmode(1, 0, iABC) /* OP_LEI */ ,opmode(1, 0, iABC) /* OP_TEST */ ,opmode(1, 1, iABC) /* OP_TESTSET */ ,opmode(0, 1, iABC) /* OP_CALL */ -- cgit v1.2.3-55-g6feb