aboutsummaryrefslogtreecommitdiff
path: root/lcode.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-31 11:08:27 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-31 11:08:27 -0300
commit100bfec39a3de3029a97e645e7fe33877d7bbc2f (patch)
tree01c2c9bb63f71d3fb186b8f5be0b7577978f8a19 /lcode.c
parenta290b84c670bbf0770d76429e7282c555a80058e (diff)
downloadlua-100bfec39a3de3029a97e645e7fe33877d7bbc2f.tar.gz
lua-100bfec39a3de3029a97e645e7fe33877d7bbc2f.tar.bz2
lua-100bfec39a3de3029a97e645e7fe33877d7bbc2f.zip
new implementation for `next'
Diffstat (limited to 'lcode.c')
-rw-r--r--lcode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lcode.c b/lcode.c
index adaff37a..047fb74a 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.c,v 1.48 2000/08/14 17:46:27 roberto Exp roberto $ 2** $Id: lcode.c,v 1.49 2000/08/15 13:18:28 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*/
@@ -693,8 +693,8 @@ const struct OpProperties luaK_opproperties[NUM_OPCODES] = {
693 {iO, 0, 0}, /* OP_PUSHNILJMP */ 693 {iO, 0, 0}, /* OP_PUSHNILJMP */
694 {iS, 0, 0}, /* OP_FORPREP */ 694 {iS, 0, 0}, /* OP_FORPREP */
695 {iS, 0, 3}, /* OP_FORLOOP */ 695 {iS, 0, 3}, /* OP_FORLOOP */
696 {iS, 3, 0}, /* OP_LFORPREP */ 696 {iS, 2, 0}, /* OP_LFORPREP */
697 {iS, 0, 4}, /* OP_LFORLOOP */ 697 {iS, 0, 3}, /* OP_LFORLOOP */
698 {iAB, VD, 0} /* OP_CLOSURE */ 698 {iAB, VD, 0} /* OP_CLOSURE */
699}; 699};
700 700