mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 11:35:54 +00:00
JitBase: Add HasConstantCarry helper
This commit is contained in:
parent
4572b075cd
commit
671fe29ebe
1 changed files with 8 additions and 0 deletions
|
@ -178,6 +178,14 @@ protected:
|
|||
void CleanUpAfterStackFault();
|
||||
|
||||
bool CanMergeNextInstructions(int count) const;
|
||||
bool HasConstantCarry() const
|
||||
{
|
||||
#ifdef _M_ARM_64
|
||||
return js.carryFlag == CarryFlag::ConstantTrue || js.carryFlag == CarryFlag::ConstantFalse;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
bool ShouldHandleFPExceptionForInstruction(const PPCAnalyst::CodeOp* op);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue