diff options
| author | JosJuice <josjuice@gmail.com> | 2023-12-03 14:19:46 +0100 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2023-12-03 14:20:45 +0100 |
| commit | 05864ceddda3a3d70928746ee88436634a360861 (patch) | |
| tree | cbc61d532d8975f18edb342b6a481286594eb2e0 /Source | |
| parent | 4f3f208fe49e5a017cda7b5f5ea18928c73a0f1e (diff) | |
PPCAnalyst: Clear crInUse on HLE
This should have been done when rebasing 6cc4f593e5 after the merge of
3a00ff625e. There are no correctness implications as far as I know,
only very minor performance implications.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/PowerPC/PPCAnalyst.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/Core/PowerPC/PPCAnalyst.cpp b/Source/Core/Core/PowerPC/PPCAnalyst.cpp index f093863492..cba02f2b53 100644 --- a/Source/Core/Core/PowerPC/PPCAnalyst.cpp +++ b/Source/Core/Core/PowerPC/PPCAnalyst.cpp @@ -1011,6 +1011,7 @@ u32 PPCAnalyzer::Analyze(u32 address, CodeBlock* block, CodeBuffer* buffer, gprInUse = BitSet32{}; fprInUse = BitSet32{}; fprInXmm = BitSet32{}; + crInUse = BitSet8{}; gprDiscardable = BitSet32{}; fprDiscardable = BitSet32{}; crDiscardable = BitSet8{}; |
