mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 21:58:48 +00:00
Merge pull request #12802 from JosJuice/ppcanalyst-bi-shift
PPCAnalyst: Fix handling of FL_READ_CR_BI
This commit is contained in:
commit
52f51d0d87
1 changed files with 1 additions and 1 deletions
|
@ -590,7 +590,7 @@ void PPCAnalyzer::SetInstructionStats(CodeBlock* block, CodeOp* code,
|
||||||
}
|
}
|
||||||
else if (opinfo->flags & FL_READ_CR_BI)
|
else if (opinfo->flags & FL_READ_CR_BI)
|
||||||
{
|
{
|
||||||
code->crIn[code->inst.BI] = true;
|
code->crIn[code->inst.BI >> 2] = true;
|
||||||
}
|
}
|
||||||
else if (opinfo->type == OpType::CR)
|
else if (opinfo->type == OpType::CR)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue