JitBase: Rename MergeAllowedNextInstructions to CanMergeNextInstructions

This is more indicative that it's checking for something
This commit is contained in:
Lioncash
2017-03-21 13:49:56 -04:00
parent f98211bfcf
commit 0d1bc53e55
10 changed files with 17 additions and 17 deletions

View File

@ -27,7 +27,7 @@ JitBase::JitBase() = default;
JitBase::~JitBase() = default;
bool JitBase::MergeAllowedNextInstructions(int count) const
bool JitBase::CanMergeNextInstructions(int count) const
{
if (CPU::GetState() == CPU::CPU_STEPPING || js.instructionsLeft < count)
return false;

View File

@ -104,7 +104,7 @@ protected:
PPCAnalyst::CodeBlock code_block;
PPCAnalyst::PPCAnalyzer analyzer;
bool MergeAllowedNextInstructions(int count) const;
bool CanMergeNextInstructions(int count) const;
void UpdateMemoryOptions();