JIT: fix typo in optimization patch

Whoops... made us flush everything on every branch.
This commit is contained in:
Fiora 2014-11-04 02:04:30 -08:00
parent 9cba787871
commit f8880c0284
1 changed files with 1 additions and 1 deletions

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();