aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-04-05 10:41:29 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-04-05 10:41:29 -0300
commit7b6c3b463e835f4accd344e1de44a92e1c5dde62 (patch)
treec7f380b508672b0b388b173d882a8ed1a04d8419 /lstate.h
parent0316308c0d8ee9834641dacf81b43bcfd396095d (diff)
downloadlua-7b6c3b463e835f4accd344e1de44a92e1c5dde62.tar.gz
lua-7b6c3b463e835f4accd344e1de44a92e1c5dde62.tar.bz2
lua-7b6c3b463e835f4accd344e1de44a92e1c5dde62.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 aa4dd533..6292d5e7 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.17 2005/03/18 18:55:09 roberto Exp roberto $ 2** $Id: lstate.h,v 2.18 2005/03/22 16:04:29 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -102,6 +102,7 @@ struct lua_State {
102 StkId base; /* base of current function */ 102 StkId base; /* base of current function */
103 global_State *l_G; 103 global_State *l_G;
104 CallInfo *ci; /* call info for current function */ 104 CallInfo *ci; /* call info for current function */
105 const Instruction *savedpc; /* `savedpc' of current function */
105 StkId stack_last; /* last free slot in the stack */ 106 StkId stack_last; /* last free slot in the stack */
106 StkId stack; /* stack base */ 107 StkId stack; /* stack base */
107 int stacksize; 108 int stacksize;