[Android] add case when copying register values in CArmRegInfo::Map_GPR_64bit

This commit is contained in:
zilmar 2016-11-29 16:51:44 +11:00
parent f912cb7efe
commit ee51bcdd36
1 changed files with 2 additions and 3 deletions

View File

@ -379,9 +379,8 @@ void CArmRegInfo::Map_GPR_64bit(int32_t MipsReg, int32_t MipsRegToLoad)
} }
else if (MipsReg != MipsRegToLoad) else if (MipsReg != MipsRegToLoad)
{ {
g_Notify->BreakPoint(__FILE__, __LINE__); AddConstToArmReg(regHi, GetMipsRegMapHi(MipsRegToLoad), 0);
/*MoveX86RegToX86Reg(GetMipsRegMapHi(MipsRegToLoad), regHi); AddConstToArmReg(reglo, GetMipsRegMapLo(MipsRegToLoad), 0);
MoveX86RegToX86Reg(GetMipsRegMapLo(MipsRegToLoad), reglo);*/
} }
} }
else else