Temporary fix for r1252's JIT breaking

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1257 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
XTra.KrazzY 2008-11-22 21:24:32 +00:00
parent 2742318e36
commit a1707aafe5
1 changed files with 2 additions and 1 deletions

View File

@ -336,7 +336,8 @@ namespace Jit64
//must be immediate - do nothing
}
OpArg newLoc = GetDefaultLocation(i);
if (doStore)
//if (doStore) <-- Breaks JIT compilation
MOV(32, newLoc, regs[i].location);
regs[i].location = newLoc;
regs[i].away = false;