mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 05:00:26 +00:00
method was renamed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20705 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f5c7ad8949
commit
977b705d74
@ -79,8 +79,9 @@ void DSGraphStats::countCallees(const Function& F) {
|
||||
I != E; ++I)
|
||||
if (isIndirectCallee(I->getCallSite().getCalledValue())) {
|
||||
// This is an indirect function call
|
||||
const std::vector<GlobalValue*> &Callees =
|
||||
I->getCalleeNode()->getGlobals();
|
||||
std::vector<Function*> Callees;
|
||||
I->getCalleeNode()->addFullFunctionList(Callees);
|
||||
|
||||
if (Callees.size() > 0) {
|
||||
totalNumCallees += Callees.size();
|
||||
++numIndirectCalls;
|
||||
|
Loading…
Reference in New Issue
Block a user