aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-12 17:21:19 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-12 17:21:19 -0200
commit95da574dbc97bfab54c2fdb170e1caf2f5571f1f (patch)
treed4d704c42079366197d6e9dcae8ebdf36135451a
parent255052b6c6a1b109c93b104c03de8968b56dcd5a (diff)
downloadlua-95da574dbc97bfab54c2fdb170e1caf2f5571f1f.tar.gz
lua-95da574dbc97bfab54c2fdb170e1caf2f5571f1f.tar.bz2
lua-95da574dbc97bfab54c2fdb170e1caf2f5571f1f.zip
some compilers (wrongly) complain about that
-rw-r--r--lcode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcode.c b/lcode.c
index 57ed52d0..1c3ffedd 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.c,v 1.60 2001/02/07 18:13:49 roberto Exp roberto $ 2** $Id: lcode.c,v 1.61 2001/02/08 11:19:10 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*/
@@ -666,7 +666,7 @@ int luaK_code2 (FuncState *fs, OpCode o, int arg1, int arg2) {
666} 666}
667 667
668 668
669const OpProperties luaK_opproperties[NUM_OPCODES] = { 669const OpProperties luaK_opproperties[] = {
670 {iU, 0, 0}, /* OP_RETURN */ 670 {iU, 0, 0}, /* OP_RETURN */
671 {iAB, 0, 0}, /* OP_CALL */ 671 {iAB, 0, 0}, /* OP_CALL */
672 {iAB, 0, 0}, /* OP_TAILCALL */ 672 {iAB, 0, 0}, /* OP_TAILCALL */