mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
arm64: Dumb typo, oops.
This commit is contained in:
parent
dd548ba12c
commit
3301a347b3
1 changed files with 2 additions and 2 deletions
|
@ -662,7 +662,7 @@ namespace MIPSComp {
|
|||
SetJumpTarget(unordered);
|
||||
// Move to integer registers, it'll be easier. Or maybe there's a simd way?
|
||||
fp.FMOV(SCRATCH1, fpr.V(sregs[i]));
|
||||
fp.FMOV(SCRATCH2, fpr.V(sregs[i]));
|
||||
fp.FMOV(SCRATCH2, fpr.V(tregs[i]));
|
||||
// And together to find if both have negative set.
|
||||
TST(SCRATCH1, SCRATCH2);
|
||||
FixupBranch cmpPositive = B(CC_PL);
|
||||
|
@ -690,7 +690,7 @@ namespace MIPSComp {
|
|||
SetJumpTarget(unordered);
|
||||
// Move to integer registers, it'll be easier. Or maybe there's a simd way?
|
||||
fp.FMOV(SCRATCH1, fpr.V(sregs[i]));
|
||||
fp.FMOV(SCRATCH2, fpr.V(sregs[i]));
|
||||
fp.FMOV(SCRATCH2, fpr.V(tregs[i]));
|
||||
// And together to find if both have negative set.
|
||||
TST(SCRATCH1, SCRATCH2);
|
||||
FixupBranch cmpPositive = B(CC_PL);
|
||||
|
|
Loading…
Add table
Reference in a new issue