mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 13:27:29 -04:00
Fix error in reti.
This commit is contained in:
parent
3459ed22aa
commit
e77e43aecb
1 changed files with 1 additions and 1 deletions
|
@ -301,7 +301,7 @@ void Instruction::executeOn(Warp &c) {
|
|||
reg[i] = c.shadowReg[i];
|
||||
for (unsigned i = 0; i < pReg.size(); ++i)
|
||||
pReg[i] = c.shadowPReg[i];
|
||||
if (!pcSet) nextPc = c.shadowPc;
|
||||
if (!pcSet) { nextPc = c.shadowPc; pcSet = true; }
|
||||
}
|
||||
break;
|
||||
case ITOF: reg[rdest] = Float(double(Word_s(reg[rsrc[0]])), wordSz);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue