diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-01-03 15:42:57 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-01-03 15:42:57 -0200 |
commit | facfec0687ff20351d3c7520344a722b9149c9ea (patch) | |
tree | 142f5863ac2663f6714a712eca9be2407e7aaf0a /lstate.h | |
parent | 34df9976a9fe9a94a4ee96d7ff0ebceac025172d (diff) | |
download | lua-facfec0687ff20351d3c7520344a722b9149c9ea.tar.gz lua-facfec0687ff20351d3c7520344a722b9149c9ea.tar.bz2 lua-facfec0687ff20351d3c7520344a722b9149c9ea.zip |
small optimizations
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 */ |