mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
PPCAnalyst: Remove unused member isBranchTarget
Branch targets always start a new block, so this variable isn't useful.
This commit is contained in:
parent
e0e09d1074
commit
f6aca69ea0
@ -272,8 +272,6 @@ bool JitBase::CanMergeNextInstructions(int count) const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
if (js.op[i].isBranchTarget)
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user