Merge pull request #12795 from JosJuice/remove-isbranchtarget

PPCAnalyst: Remove unused member isBranchTarget
This commit is contained in:
Tilka 2024-05-25 23:10:17 +01:00 committed by GitHub
commit f35e8e62e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 3 deletions

View File

@ -272,8 +272,6 @@ bool JitBase::CanMergeNextInstructions(int count) const
{
return false;
}
if (js.op[i].isBranchTarget)
return false;
}
return true;
}

View File

@ -38,7 +38,6 @@ struct CodeOp // 16B
s8 fregOut = 0;
BitSet8 crIn;
BitSet8 crOut;
bool isBranchTarget = false;
bool branchUsesCtr = false;
bool branchIsIdleLoop = false;
BitSet8 wantsCR;