зеркало из https://github.com/mozilla/gecko-dev.git
Fixed bug in short value instruction operand printing.
This commit is contained in:
Родитель
7251bbcce5
Коммит
83613f0632
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче