diff options
Diffstat (limited to 'ltests.c')
| -rw-r--r-- | ltests.c | 5 |
1 files changed, 4 insertions, 1 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: ltests.c,v 2.46 2008/02/11 19:04:16 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 2.47 2008/02/19 18:55:09 roberto Exp roberto $ |
| 3 | ** Internal Module for Debugging of the Lua Implementation | 3 | ** Internal Module for Debugging of the Lua Implementation |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -410,6 +410,9 @@ static char *buildop (Proto *p, int pc, char *buff) { | |||
| 410 | case iAsBx: | 410 | case iAsBx: |
| 411 | sprintf(buff+strlen(buff), "%-12s%4d %4d", name, GETARG_A(i), GETARG_sBx(i)); | 411 | sprintf(buff+strlen(buff), "%-12s%4d %4d", name, GETARG_A(i), GETARG_sBx(i)); |
| 412 | break; | 412 | break; |
| 413 | case iAx: | ||
| 414 | sprintf(buff+strlen(buff), "%-12s%4d", name, GETARG_Ax(i)); | ||
| 415 | break; | ||
| 413 | } | 416 | } |
| 414 | return buff; | 417 | return buff; |
| 415 | } | 418 | } |
