diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-04-19 13:22:13 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-04-19 13:22:13 -0300 |
commit | 4758113043b6c362a0fdce77715c711332d909dc (patch) | |
tree | deea8a795161332bb1579f201f8a7eb5e4b102b9 /ldebug.c | |
parent | a4e644add264b6bac3171a03aa6febcf61e89ae6 (diff) | |
download | lua-4758113043b6c362a0fdce77715c711332d909dc.tar.gz lua-4758113043b6c362a0fdce77715c711332d909dc.tar.bz2 lua-4758113043b6c362a0fdce77715c711332d909dc.zip |
change in opcode OP_LOADNIL: B is used as a counter instead of a
register. (Avoids an assignment to R(B), not present in any other
instruction.)
Diffstat (limited to 'ldebug.c')
-rw-r--r-- | ldebug.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldebug.c,v 2.78 2011/04/18 15:02:37 roberto Exp roberto $ | 2 | ** $Id: ldebug.c,v 2.79 2011/04/18 19:49:13 roberto Exp roberto $ |
3 | ** Debug Interface | 3 | ** Debug Interface |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -355,8 +355,8 @@ static const char *getobjname (lua_State *L, CallInfo *ci, int reg, | |||
355 | break; | 355 | break; |
356 | } | 356 | } |
357 | case OP_LOADNIL: { | 357 | case OP_LOADNIL: { |
358 | int b = GETARG_B(i); /* move from 'b' to 'a' */ | 358 | int b = GETARG_B(i); |
359 | if (a <= reg && reg <= b) /* set registers from 'a' to 'b' */ | 359 | if (a <= reg && reg <= a + b) /* set registers from 'a' to 'a+b' */ |
360 | what = NULL; | 360 | what = NULL; |
361 | break; | 361 | break; |
362 | } | 362 | } |