aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-01-03 15:42:57 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-01-03 15:42:57 -0200
commitfacfec0687ff20351d3c7520344a722b9149c9ea (patch)
tree142f5863ac2663f6714a712eca9be2407e7aaf0a /lstate.h
parent34df9976a9fe9a94a4ee96d7ff0ebceac025172d (diff)
downloadlua-facfec0687ff20351d3c7520344a722b9149c9ea.tar.gz
lua-facfec0687ff20351d3c7520344a722b9149c9ea.tar.bz2
lua-facfec0687ff20351d3c7520344a722b9149c9ea.zip
small optimizations
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lstate.h b/lstate.h
index 150bc4db..db7c7b86 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ 2** $Id: lstate.h,v 1.68 2001/12/18 20:52:30 roberto Exp $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -76,6 +76,7 @@ typedef struct CallInfo {
76 StkId base; /* base for called function */ 76 StkId base; /* base for called function */
77 const Instruction *savedpc; 77 const Instruction *savedpc;
78 lua_Hook linehook; 78 lua_Hook linehook;
79 StkId top; /* top for this function (when it's a Lua function) */
79 /* extra information for debugging */ 80 /* extra information for debugging */
80 const Instruction **pc; 81 const Instruction **pc;
81 int lastpc; /* last pc traced */ 82 int lastpc; /* last pc traced */