Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9451 from Sintendo/jit64boolxrw
Jit64: boolx - Eliminate read dependency
  • Loading branch information
JosJuice committed Jan 19, 2021
2 parents 04ccd4c + 8964612 commit ebf3b5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp
Expand Up @@ -690,7 +690,7 @@ void Jit64::boolX(UGeckoInstruction inst)
else
{
RCOpArg Rs = gpr.Use(s, RCMode::Read);
RCX64Reg Ra = gpr.Bind(a, RCMode::ReadWrite);
RCX64Reg Ra = gpr.Bind(a, RCMode::Write);
RegCache::Realize(Rs, Ra);
MOV(32, Ra, Rs);
NOT(32, Ra);
Expand Down

0 comments on commit ebf3b5f

Please sign in to comment.