summaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-01-19 14:50:30 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-01-19 14:50:30 -0200
commit512b15b6012c14b0b58c4531078d27794a583f84 (patch)
tree57618feea448e8a59975d96234af365072a5661e /lvm.h
parent33d35048892fe745bc5b1f16ff7ff2baf5102c0d (diff)
downloadlua-512b15b6012c14b0b58c4531078d27794a583f84.tar.gz
lua-512b15b6012c14b0b58c4531078d27794a583f84.tar.bz2
lua-512b15b6012c14b0b58c4531078d27794a583f84.zip
small optimizations (relational operators)
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lvm.h b/lvm.h
index 0768e570..d4163620 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 1.12 1999/11/22 13:12:07 roberto Exp roberto $ 2** $Id: lvm.h,v 1.13 1999/12/01 19:50:08 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*/
@@ -28,7 +28,6 @@ void luaV_getglobal (lua_State *L, GlobalVar *gv);
28void luaV_setglobal (lua_State *L, GlobalVar *gv); 28void luaV_setglobal (lua_State *L, GlobalVar *gv);
29StkId luaV_execute (lua_State *L, const Closure *cl, const TProtoFunc *tf, StkId base); 29StkId luaV_execute (lua_State *L, const Closure *cl, const TProtoFunc *tf, StkId base);
30void luaV_closure (lua_State *L, int nelems); 30void luaV_closure (lua_State *L, int nelems);
31void luaV_comparison (lua_State *L, StkId top, lua_Type ttype_less, 31void luaV_comparison (lua_State *L);
32 lua_Type ttype_equal, lua_Type ttype_great, IMS op);
33 32
34#endif 33#endif