PPCAnalyst: Remove unused member isBranchTarget

Branch targets always start a new block, so this variable isn't useful.
This commit is contained in:
JosJuice 2024-05-24 20:51:39 +02:00
parent e0e09d1074
commit f6aca69ea0
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;