Skip to content
Permalink
Browse files
Merge pull request #7635 from degasus/srawix
JitArm64: Fix RC calculation of srawix.
  • Loading branch information
degasus committed Dec 22, 2018
2 parents 490dffc + 64378c9 commit 2d00315
Showing 1 changed file with 6 additions and 0 deletions.
@@ -631,6 +631,9 @@ void JitArm64::srawix(UGeckoInstruction inst)
ComputeCarry(true);
else
ComputeCarry(false);

if (inst.Rc)
ComputeRC0(gpr.GetImm(a));
}
else if (amount == 0)
{
@@ -639,6 +642,9 @@ void JitArm64::srawix(UGeckoInstruction inst)
ARM64Reg RS = gpr.R(s);
MOV(RA, RS);
ComputeCarry(false);

if (inst.Rc)
ComputeRC0(RA);
}
else
{

0 comments on commit 2d00315

Please sign in to comment.