diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-06-08 16:07:27 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-06-08 16:07:27 -0300 |
commit | 588dfa4ce5f7fa699495a2ee590a57a8305be420 (patch) | |
tree | a8515d4c9189dad6216f95c574a667d01cbe9826 /lopcodes.h | |
parent | 6f2b8e21c4ea9d730ccfe7e41bfc178704d1fc75 (diff) | |
download | lua-588dfa4ce5f7fa699495a2ee590a57a8305be420.tar.gz lua-588dfa4ce5f7fa699495a2ee590a57a8305be420.tar.bz2 lua-588dfa4ce5f7fa699495a2ee590a57a8305be420.zip |
detail in comment
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.h,v 1.190 2018/03/07 15:55:38 roberto Exp roberto $ | 2 | ** $Id: lopcodes.h,v 1.191 2018/04/04 14:23:41 roberto Exp roberto $ |
3 | ** Opcodes for Lua virtual machine | 3 | ** Opcodes for Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -288,7 +288,7 @@ OP_SETLIST,/* A B C R(A)[(C-1)*FPF+i] := R(A+i), 1 <= i <= B */ | |||
288 | 288 | ||
289 | OP_CLOSURE,/* A Bx R(A) := closure(KPROTO[Bx]) */ | 289 | OP_CLOSURE,/* A Bx R(A) := closure(KPROTO[Bx]) */ |
290 | 290 | ||
291 | OP_VARARG,/* A B C R(A), R(A+1), ..., R(A+C-2) = vararg */ | 291 | OP_VARARG,/* A C R(A), R(A+1), ..., R(A+C-2) = vararg */ |
292 | 292 | ||
293 | OP_PREPVARARG,/*A (adjust vararg parameters) */ | 293 | OP_PREPVARARG,/*A (adjust vararg parameters) */ |
294 | 294 | ||