diff options
Diffstat (limited to 'lib/Analysis')
-rw-r--r-- | lib/Analysis/CallGraph.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/Analysis/CallGraph.cpp b/lib/Analysis/CallGraph.cpp index 07c2b35349..1e28411eb4 100644 --- a/lib/Analysis/CallGraph.cpp +++ b/lib/Analysis/CallGraph.cpp @@ -108,6 +108,13 @@ CallGraphNode *CallGraph::getOrInsertFunction(Entity F) { return Node = new CallGraphNode(F); } +Decl *CallGraph::getDecl(CallGraphNode *Node) { + // Get the function's context. + ASTContext *Ctx = CallerCtx[Node]; + + return Node->getDecl(*Ctx); +} + void CallGraph::print(llvm::raw_ostream &os) { for (iterator I = begin(), E = end(); I != E; ++I) { if (I->second->hasCallee()) { |