mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-02 18:24:53 +00: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
2 changed files with 0 additions and 3 deletions
|
@ -272,8 +272,6 @@ bool JitBase::CanMergeNextInstructions(int count) const
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (js.op[i].isBranchTarget)
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,6 @@ struct CodeOp // 16B
|
||||||
s8 fregOut = 0;
|
s8 fregOut = 0;
|
||||||
BitSet8 crIn;
|
BitSet8 crIn;
|
||||||
BitSet8 crOut;
|
BitSet8 crOut;
|
||||||
bool isBranchTarget = false;
|
|
||||||
bool branchUsesCtr = false;
|
bool branchUsesCtr = false;
|
||||||
bool branchIsIdleLoop = false;
|
bool branchIsIdleLoop = false;
|
||||||
BitSet8 wantsCR;
|
BitSet8 wantsCR;
|
||||||
|
|
Loading…
Add table
Reference in a new issue