From 7b6c3b463e835f4accd344e1de44a92e1c5dde62 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 5 Apr 2005 10:41:29 -0300 Subject: small optimizations --- lstate.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index aa4dd533..6292d5e7 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.17 2005/03/18 18:55:09 roberto Exp roberto $ +** $Id: lstate.h,v 2.18 2005/03/22 16:04:29 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -102,6 +102,7 @@ struct lua_State { StkId base; /* base of current function */ global_State *l_G; CallInfo *ci; /* call info for current function */ + const Instruction *savedpc; /* `savedpc' of current function */ StkId stack_last; /* last free slot in the stack */ StkId stack; /* stack base */ int stacksize; -- cgit v1.2.3-55-g6feb