Fixed bug in short value instruction operand printing.

This commit is contained in:
rogerl%netscape.com 2001-08-10 00:25:47 +00:00
Родитель 7251bbcce5
Коммит 83613f0632
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -2346,7 +2346,7 @@ uint32 printInstruction(Formatter &f, uint32 i, const ByteCodeModule& bcm)
case SetElementOp:
{
uint16 u = bcm.getShort(i);
printFormat(f, "%uh", i);
printFormat(f, "%uh", u);
i += 2;
}
break;
@ -2361,7 +2361,7 @@ uint32 printInstruction(Formatter &f, uint32 i, const ByteCodeModule& bcm)
case DupInsertNOp:
{
uint16 u = bcm.getShort(i);
printFormat(f, "%uh", i);
printFormat(f, "%uh", u);
i += 2;
}
break;