JIT: fix typo in optimization patch
Whoops... made us flush everything on every branch.
This commit is contained in:
parent
9cba787871
commit
f8880c0284
|
@ -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.
|
// 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
|
// We don't want to do this if a test is needed though, because it would interrupt macro-op
|
||||||
// fusion.
|
// fusion.
|
||||||
for (int j : js.op->gprInUse)
|
for (int j : ~js.op->gprInUse)
|
||||||
gpr.StoreFromRegister(j);
|
gpr.StoreFromRegister(j);
|
||||||
}
|
}
|
||||||
DoMergedBranchCondition();
|
DoMergedBranchCondition();
|
||||||
|
|
Loading…
Reference in New Issue