aboutsummaryrefslogtreecommitdiff
path: root/lcode.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-11-30 11:29:18 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-11-30 11:29:18 -0200
commit10b8c99bbbb5405f5fb37513645421b8e3c3ba43 (patch)
tree9314d4ab53f9394e2199e05cf6c41b4d0ff0d52e /lcode.h
parentbdc751ce2346e95f96de3d55d48ddb25674073c5 (diff)
downloadlua-10b8c99bbbb5405f5fb37513645421b8e3c3ba43.tar.gz
lua-10b8c99bbbb5405f5fb37513645421b8e3c3ba43.tar.bz2
lua-10b8c99bbbb5405f5fb37513645421b8e3c3ba43.zip
small peephole optimizations
Diffstat (limited to 'lcode.h')
-rw-r--r--lcode.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lcode.h b/lcode.h
index 1c3229d9..a1fd735d 100644
--- a/lcode.h
+++ b/lcode.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.h,v 1.67 2017/09/28 16:53:29 roberto Exp roberto $ 2** $Id: lcode.h,v 1.68 2017/10/04 21:56:32 roberto Exp roberto $
3** Code generator for Lua 3** Code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -88,6 +88,7 @@ LUAI_FUNC void luaK_infix (FuncState *fs, BinOpr op, expdesc *v);
88LUAI_FUNC void luaK_posfix (FuncState *fs, BinOpr op, expdesc *v1, 88LUAI_FUNC void luaK_posfix (FuncState *fs, BinOpr op, expdesc *v1,
89 expdesc *v2, int line); 89 expdesc *v2, int line);
90LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore); 90LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore);
91LUAI_FUNC void luaK_finish (FuncState *fs);
91 92
92 93
93#endif 94#endif