[ARM] Fixes orcx implementation.

This commit is contained in:
Ryan Houdek 2013-09-12 09:55:55 +00:00
parent e1d510c2dc
commit 749b62fcd9
1 changed files with 2 additions and 3 deletions

View File

@ -139,7 +139,6 @@ void JitArm::arith(UGeckoInstruction inst)
bool carry = false; bool carry = false;
bool isUnsigned = false; bool isUnsigned = false;
bool shiftedImm = false; bool shiftedImm = false;
// printf("inst %s has OPCD %d subop10 %d\n", PPCTables::GetInstructionName(inst), inst.OPCD, inst.SUBOP10);
switch (inst.OPCD) switch (inst.OPCD)
{ {
@ -481,7 +480,7 @@ void JitArm::arith(UGeckoInstruction inst)
RS = gpr.R(s); RS = gpr.R(s);
RB = gpr.R(b); RB = gpr.R(b);
MVN(rA, RB); MVN(rA, RB);
ANDS(RA, RS, rA); ORRS(RA, RS, rA);
gpr.Unlock(rA); gpr.Unlock(rA);
} }
break; break;