Directly call timer done after perm loop, do not need to check the timer

This commit is contained in:
zilmar 2012-09-27 13:43:24 +10:00
parent ad757613b4
commit a1832f6928
1 changed files with 2 additions and 1 deletions

View File

@ -376,7 +376,8 @@ void CCodeSection::GenerateSectionLinkage (void)
m_Jump.RegSet.WriteBackRegisters();
UpdateCounters(m_Jump.RegSet,false, true);
Call_Direct(InPermLoop,"InPermLoop");
UpdateCounters(m_Jump.RegSet,true,true);
MoveConstToX86reg((DWORD)_SystemTimer,x86_ECX);
Call_Direct(AddressOf(&CSystemTimer::TimerDone),"CSystemTimer::TimerDone");
CPU_Message("CompileSystemCheck 3");
CompileSystemCheck(-1,m_Jump.RegSet);
}