diff --git a/Source/Core/Core/PowerPC/PPCAnalyst.cpp b/Source/Core/Core/PowerPC/PPCAnalyst.cpp index edf1425299..286acf5017 100644 --- a/Source/Core/Core/PowerPC/PPCAnalyst.cpp +++ b/Source/Core/Core/PowerPC/PPCAnalyst.cpp @@ -172,11 +172,22 @@ bool AnalyzeFunction(u32 startAddr, Symbol &func, int max_size) else { u32 target = EvaluateBranchTarget(instr, addr); - if (target != INVALID_TARGET && instr.LK) + if (target != INVALID_TARGET) { - //we found a branch-n-link! - func.calls.push_back(SCall(target,addr)); - func.flags &= ~FFLAG_LEAF; + if (instr.LK) + { + //we found a branch-n-link! + func.calls.push_back(SCall(target, addr)); + func.flags &= ~FFLAG_LEAF; + } + else + { + if (target > farthestInternalBranchTarget) + { + farthestInternalBranchTarget = target; + } + numInternalBranches++; + } } } }