hsail: Fix disassembly of load instruction with 3 destination operands
This commit is contained in:
parent
bd65ec0744
commit
68127ca3da
1 changed files with 9 additions and 0 deletions
|
@ -93,6 +93,15 @@ namespace HsailISA
|
||||||
this->dest_vect[1].disassemble(),
|
this->dest_vect[1].disassemble(),
|
||||||
this->addr.disassemble());
|
this->addr.disassemble());
|
||||||
break;
|
break;
|
||||||
|
case 3:
|
||||||
|
this->disassembly = csprintf("%s_%s_%s (%s,%s,%s), %s", this->opcode,
|
||||||
|
segmentNames[this->segment],
|
||||||
|
MemDataType::label,
|
||||||
|
this->dest_vect[0].disassemble(),
|
||||||
|
this->dest_vect[1].disassemble(),
|
||||||
|
this->dest_vect[2].disassemble(),
|
||||||
|
this->addr.disassemble());
|
||||||
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
this->disassembly = csprintf("%s_%s_%s (%s,%s,%s,%s), %s",
|
this->disassembly = csprintf("%s_%s_%s (%s,%s,%s,%s), %s",
|
||||||
this->opcode,
|
this->opcode,
|
||||||
|
|
Loading…
Reference in a new issue