diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-30 11:29:18 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-30 11:29:18 -0200 |
commit | 10b8c99bbbb5405f5fb37513645421b8e3c3ba43 (patch) | |
tree | 9314d4ab53f9394e2199e05cf6c41b4d0ff0d52e /lparser.h | |
parent | bdc751ce2346e95f96de3d55d48ddb25674073c5 (diff) | |
download | lua-10b8c99bbbb5405f5fb37513645421b8e3c3ba43.tar.gz lua-10b8c99bbbb5405f5fb37513645421b8e3c3ba43.tar.bz2 lua-10b8c99bbbb5405f5fb37513645421b8e3c3ba43.zip |
small peephole optimizations
Diffstat (limited to 'lparser.h')
-rw-r--r-- | lparser.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lparser.h,v 1.77 2017/04/28 20:57:45 roberto Exp roberto $ | 2 | ** $Id: lparser.h,v 1.78 2017/06/27 11:35:31 roberto Exp roberto $ |
3 | ** Lua Parser | 3 | ** Lua Parser |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -124,7 +124,6 @@ typedef struct FuncState { | |||
124 | int pc; /* next position to code (equivalent to 'ncode') */ | 124 | int pc; /* next position to code (equivalent to 'ncode') */ |
125 | int lasttarget; /* 'label' of last 'jump label' */ | 125 | int lasttarget; /* 'label' of last 'jump label' */ |
126 | int previousline; /* last line that was saved in 'lineinfo' */ | 126 | int previousline; /* last line that was saved in 'lineinfo' */ |
127 | int jpc; /* list of pending jumps to 'pc' */ | ||
128 | int nk; /* number of elements in 'k' */ | 127 | int nk; /* number of elements in 'k' */ |
129 | int np; /* number of elements in 'p' */ | 128 | int np; /* number of elements in 'p' */ |
130 | int nabslineinfo; /* number of elements in 'abslineinfo' */ | 129 | int nabslineinfo; /* number of elements in 'abslineinfo' */ |