diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-05-13 10:54:47 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-05-13 10:54:47 -0300 |
commit | 6d95de83c644da5f720cf468c38df9782f1c890d (patch) | |
tree | 734170c5082ae1e44ad9fe69d85b167fd4d07207 /lstate.h | |
parent | 5c8770f8969a73cf4ca503f54c2217f76de62e04 (diff) | |
download | lua-6d95de83c644da5f720cf468c38df9782f1c890d.tar.gz lua-6d95de83c644da5f720cf468c38df9782f1c890d.tar.bz2 lua-6d95de83c644da5f720cf468c38df9782f1c890d.zip |
no more field 'base' in CallInfo (base is always equal to 'func + 1',
with old/new vararg implementation)
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 2.139 2017/04/24 16:59:26 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 2.140 2017/05/04 13:32:01 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 | */ |
@@ -96,7 +96,6 @@ typedef struct CallInfo { | |||
96 | struct CallInfo *previous, *next; /* dynamic call link */ | 96 | struct CallInfo *previous, *next; /* dynamic call link */ |
97 | union { | 97 | union { |
98 | struct { /* only for Lua functions */ | 98 | struct { /* only for Lua functions */ |
99 | StkId base; /* base for this function */ | ||
100 | const Instruction *savedpc; | 99 | const Instruction *savedpc; |
101 | } l; | 100 | } l; |
102 | struct { /* only for C functions */ | 101 | struct { /* only for C functions */ |