389c389
< FpDest = fixDest(Fpscr, FpOp1 * FpOp2, FpOp1, FpOp2);
---
> FpDest = fixMultDest(Fpscr, FpOp1 * FpOp2, FpOp1, FpOp2);
410c410
< cDest.fp = fixDest(Fpscr, cOp1.fp * cOp2.fp, cOp1.fp, cOp2.fp);
---
> cDest.fp = fixMultDest(Fpscr, cOp1.fp * cOp2.fp, cOp1.fp, cOp2.fp);
686c686
< FpDest = fixDest(Fpscr, FpDest - mid, FpDest, mid);
---
> FpDest = fixDest(Fpscr, FpDest - mid, FpDest, -mid);
710c710
< cDest.fp = fixDest(Fpscr, cDest.fp - mid, cDest.fp, mid);
---
> cDest.fp = fixDest(Fpscr, cDest.fp - mid, cDest.fp, -mid);
733c733
< FpDest = fixDest(Fpscr, -FpDest - mid, FpDest, mid);
---
> FpDest = fixDest(Fpscr, -FpDest - mid, -FpDest, -mid);
758c758
< cDest.fp = fixDest(Fpscr, -cDest.fp - mid, cDest.fp, mid);
---
> cDest.fp = fixDest(Fpscr, -cDest.fp - mid, -cDest.fp, -mid);
780c780
< FpDest = fixDest(Fpscr, -FpDest + mid, FpDest, mid);
---
> FpDest = fixDest(Fpscr, -FpDest + mid, -FpDest, mid);
805c805
< cDest.fp = fixDest(Fpscr, -cDest.fp + mid, cDest.fp, mid);
---
> cDest.fp = fixDest(Fpscr, -cDest.fp + mid, -cDest.fp, mid);
1092c1092
< FpDest = cOp1.fp;
---
> FpDest = fixFpDFpSDest(Fpscr, cOp1.fp);
1270c1270
< FpDest = vfpSFixedToFpS(FpOp1.sw, false, imm);
---
> FpDest = vfpSFixedToFpS(Fpscr, FpOp1.sw, false, imm);
1286c1286
< cDest.fp = vfpSFixedToFpD(mid, false, imm);
---
> cDest.fp = vfpSFixedToFpD(Fpscr, mid, false, imm);
1302c1302
< FpDest = vfpUFixedToFpS(FpOp1.uw, false, imm);
---
> FpDest = vfpUFixedToFpS(Fpscr, FpOp1.uw, false, imm);
1318c1318
< cDest.fp = vfpUFixedToFpD(mid, false, imm);
---
> cDest.fp = vfpUFixedToFpD(Fpscr, mid, false, imm);
1406c1406
< FpDest = vfpSFixedToFpS(FpOp1.sh, true, imm);
---
> FpDest = vfpSFixedToFpS(Fpscr, FpOp1.sh, true, imm);
1423c1423
< cDest.fp = vfpSFixedToFpD(mid, true, imm);
---
> cDest.fp = vfpSFixedToFpD(Fpscr, mid, true, imm);
1440c1440
< FpDest = vfpUFixedToFpS(FpOp1.uh, true, imm);
---
> FpDest = vfpUFixedToFpS(Fpscr, FpOp1.uh, true, imm);
1457c1457
< cDest.fp = vfpUFixedToFpD(mid, true, imm);
---
> cDest.fp = vfpUFixedToFpD(Fpscr, mid, true, imm);