Skip to content

Commit

Permalink
Merge pull request #1605 from FioraAeterna/fixcrormerge
Browse files Browse the repository at this point in the history
JIT: fix fcmp+cror merging bug
  • Loading branch information
Sonicadvance1 committed Nov 29, 2014
2 parents 1a85df0 + d42305a commit 5003618
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp
Expand Up @@ -285,6 +285,7 @@ void Jit64::FloatCompare(UGeckoInstruction inst, bool upper)
js.skipnext = true;
js.downcountAmount++;
int dst = 3 - (next.CRBD & 3);
output[3 - (next.CRBD & 3)] &= ~(1 << dst);
output[3 - (next.CRBA & 3)] |= 1 << dst;
output[3 - (next.CRBB & 3)] |= 1 << dst;
}
Expand Down

0 comments on commit 5003618

Please sign in to comment.