mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
JitBase: Make MergeAllowedNextInstructions a const member function
This commit is contained in:
@ -27,7 +27,7 @@ JitBase::JitBase() = default;
|
|||||||
|
|
||||||
JitBase::~JitBase() = default;
|
JitBase::~JitBase() = default;
|
||||||
|
|
||||||
bool JitBase::MergeAllowedNextInstructions(int count)
|
bool JitBase::MergeAllowedNextInstructions(int count) const
|
||||||
{
|
{
|
||||||
if (CPU::GetState() == CPU::CPU_STEPPING || js.instructionsLeft < count)
|
if (CPU::GetState() == CPU::CPU_STEPPING || js.instructionsLeft < count)
|
||||||
return false;
|
return false;
|
||||||
|
@ -104,7 +104,7 @@ protected:
|
|||||||
PPCAnalyst::CodeBlock code_block;
|
PPCAnalyst::CodeBlock code_block;
|
||||||
PPCAnalyst::PPCAnalyzer analyzer;
|
PPCAnalyst::PPCAnalyzer analyzer;
|
||||||
|
|
||||||
bool MergeAllowedNextInstructions(int count);
|
bool MergeAllowedNextInstructions(int count) const;
|
||||||
|
|
||||||
void UpdateMemoryOptions();
|
void UpdateMemoryOptions();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user