Merge pull request #1491 from FioraAeterna/fixdumbmistake

JIT: fix typo in optimization patch
This commit is contained in:
Ryan Houdek 2014-11-04 04:57:01 -06:00
commit 75df11335a

View File

@ -162,7 +162,7 @@ void Jit64::ComputeRC(const Gen::OpArg & arg, bool needs_test, bool needs_sext)
// better to flush it here so that we don't have to flush it on both sides of the branch.
// We don't want to do this if a test is needed though, because it would interrupt macro-op
// fusion.
for (int j : js.op->gprInUse)
for (int j : ~js.op->gprInUse)
gpr.StoreFromRegister(j);
}
DoMergedBranchCondition();