summaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-04-04 15:12:51 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-04-04 15:12:51 -0300
commit0316308c0d8ee9834641dacf81b43bcfd396095d (patch)
treef2a66cb6080fe432ede5d17911d3766d37ad5fb6 /lvm.h
parent409ee99900216d4a64a9a7029099bc7ae67a4d8e (diff)
downloadlua-0316308c0d8ee9834641dacf81b43bcfd396095d.tar.gz
lua-0316308c0d8ee9834641dacf81b43bcfd396095d.tar.bz2
lua-0316308c0d8ee9834641dacf81b43bcfd396095d.zip
removed dirt optimizations that gave small gains
Diffstat (limited to '')
-rw-r--r--lvm.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/lvm.h b/lvm.h
index 0cae36c9..0e096c96 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $ 2** $Id: lvm.h,v 2.2 2004/05/14 19:25:09 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -26,10 +26,8 @@ int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r);
26int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2); 26int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2);
27const TValue *luaV_tonumber (const TValue *obj, TValue *n); 27const TValue *luaV_tonumber (const TValue *obj, TValue *n);
28int luaV_tostring (lua_State *L, StkId obj); 28int luaV_tostring (lua_State *L, StkId obj);
29StkId luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val, 29void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val);
30 const Instruction *pc); 30void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val);
31StkId luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val,
32 const Instruction *pc);
33StkId luaV_execute (lua_State *L, int nexeccalls); 31StkId luaV_execute (lua_State *L, int nexeccalls);
34void luaV_concat (lua_State *L, int total, int last); 32void luaV_concat (lua_State *L, int total, int last);
35 33