Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[ARM] Fixes orcx implementation.
  • Loading branch information
Sonicadvance1 committed Sep 12, 2013
1 parent e1d510c commit 749b62f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Source/Core/Core/Src/PowerPC/JitArm32/JitArm_Integer.cpp
Expand Up @@ -139,8 +139,7 @@ void JitArm::arith(UGeckoInstruction inst)
bool carry = false;
bool isUnsigned = false;
bool shiftedImm = false;
// printf("inst %s has OPCD %d subop10 %d\n", PPCTables::GetInstructionName(inst), inst.OPCD, inst.SUBOP10);


switch (inst.OPCD)
{
case 7: // mulli
Expand Down Expand Up @@ -481,7 +480,7 @@ void JitArm::arith(UGeckoInstruction inst)
RS = gpr.R(s);
RB = gpr.R(b);
MVN(rA, RB);
ANDS(RA, RS, rA);
ORRS(RA, RS, rA);
gpr.Unlock(rA);
}
break;
Expand Down

0 comments on commit 749b62f

Please sign in to comment.