aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-11-27 15:44:31 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-11-27 15:44:31 -0200
commit093c16b67b263e334600ed306310b9015f65fa8b (patch)
tree5ed17cb52078eddcc9b6b051e102839194ad4ba8 /ltm.h
parent599f1742c628db70ef84794b3b8b25fdef9e5004 (diff)
downloadlua-093c16b67b263e334600ed306310b9015f65fa8b.tar.gz
lua-093c16b67b263e334600ed306310b9015f65fa8b.tar.bz2
lua-093c16b67b263e334600ed306310b9015f65fa8b.zip
new opcodes 'OP_LTI' and 'OP_LEI'
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ltm.h b/ltm.h
index 31454a5c..c8fed77c 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 2.25 2017/06/29 15:06:44 roberto Exp roberto $ 2** $Id: ltm.h,v 2.26 2017/09/27 18:59:08 roberto Exp roberto $
3** Tag methods 3** Tag methods
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -72,6 +72,8 @@ LUAI_FUNC void luaT_trybiniTM (lua_State *L, const TValue *p1, int i2,
72 int inv, StkId res, TMS event); 72 int inv, StkId res, TMS event);
73LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1, 73LUAI_FUNC int luaT_callorderTM (lua_State *L, const TValue *p1,
74 const TValue *p2, TMS event); 74 const TValue *p2, TMS event);
75LUAI_FUNC int luaT_callorderiTM (lua_State *L, const TValue *p1, int v2,
76 int inv, TMS event);
75 77
76LUAI_FUNC void luaT_adjustvarargs (lua_State *L, Proto *p, int actual); 78LUAI_FUNC void luaT_adjustvarargs (lua_State *L, Proto *p, int actual);
77LUAI_FUNC void luaT_getvarargs (lua_State *L, TValue *t, StkId where, 79LUAI_FUNC void luaT_getvarargs (lua_State *L, TValue *t, StkId where,