diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-09-11 21:12:38 -0500 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-09-11 21:12:38 -0500 |
| commit | d6ef8dc8c67ae2e19da357ed6947d8a209d556e6 (patch) | |
| tree | 55c215d76f5770895be8b30296b47c59949456ce /Source | |
| parent | 5061a33c299e8ace53925f57bfc09145ea9d80e4 (diff) | |
| parent | b8d4834cb1d54d722494bc03107472803353a18b (diff) | |
Merge pull request #1052 from Sonicadvance1/fix-ppcAnalyst-return
Fix the return value of PPCAnalyst.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/PowerPC/PPCAnalyst.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/PowerPC/PPCAnalyst.cpp b/Source/Core/Core/PowerPC/PPCAnalyst.cpp index f790f7d44b..55adc3f172 100644 --- a/Source/Core/Core/PowerPC/PPCAnalyst.cpp +++ b/Source/Core/Core/PowerPC/PPCAnalyst.cpp @@ -676,12 +676,12 @@ u32 PPCAnalyzer::Analyze(u32 address, CodeBlock *block, CodeBuffer *buffer, u32 if (!follow) { + address += 4; if (!conditional_continue && opinfo->flags & FL_ENDBLOCK) //right now we stop early { found_exit = true; break; } - address += 4; } // XXX: We don't support inlining yet. #if 0 |
