Jit: Fall back to interpreter when frsp's record bit is set

This commit is contained in:
Lioncash 2015-12-09 14:08:55 -05:00
parent 3acf165787
commit f7977fdee5
2 changed files with 2 additions and 0 deletions

View File

@ -609,6 +609,7 @@ void Jit64::frspx(UGeckoInstruction inst)
{
INSTRUCTION_START
JITDISABLE(bJITFloatingPointOff);
FALLBACK_IF(inst.Rc);
int b = inst.FB;
int d = inst.FD;
bool packed = jit->js.op->fprIsDuplicated[b] && !cpu_info.bAtom;

View File

@ -329,6 +329,7 @@ void JitArm64::frspx(UGeckoInstruction inst)
{
INSTRUCTION_START
JITDISABLE(bJITFloatingPointOff);
FALLBACK_IF(inst.Rc);
u32 b = inst.FB, d = inst.FD;