keep more opcode arguments byte-aligned

This commit is contained in:
Roberto Ierusalimschy
2018-01-09 09:24:12 -02:00
parent a9295a2b8e
commit 33e3774f44
3 changed files with 31 additions and 27 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: ltests.c,v 2.237 2017/12/15 18:53:48 roberto Exp roberto $
** $Id: ltests.c,v 2.239 2018/01/09 11:21:41 roberto Exp $
** Internal Module for Debugging of the Lua Implementation
** See Copyright Notice in lua.h
*/
@@ -557,7 +557,7 @@ static char *buildop (Proto *p, int pc, char *buff) {
break;
case isJ:
sprintf(buff+strlen(buff), "%-12s%4d (%1d)", name, GETARG_sJ(i),
!!GETARG_k(i));
!!GETARG_m(i));
break;
}
return buff;