diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-06 23:26:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-06 23:26:21 +0000 |
commit | 7f6d8dd14492c6fe9f8210b49fa6109842b2eae4 (patch) | |
tree | d57751113c652ce39e90c771892d330591ca8dec | |
parent | c3a84099a9eef3fd326751715e5177cf0884acbe (diff) | |
download | bcm5719-llvm-7f6d8dd14492c6fe9f8210b49fa6109842b2eae4.tar.gz bcm5719-llvm-7f6d8dd14492c6fe9f8210b49fa6109842b2eae4.zip |
Add a comment
llvm-svn: 4586
-rw-r--r-- | llvm/include/llvm/Analysis/DataStructure.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/include/llvm/Analysis/DataStructure.h b/llvm/include/llvm/Analysis/DataStructure.h index 9659c6074a8..ad0d233cfe5 100644 --- a/llvm/include/llvm/Analysis/DataStructure.h +++ b/llvm/include/llvm/Analysis/DataStructure.h @@ -80,6 +80,8 @@ public: return *I->second; } + /// getCallSites - Return all of the call sites for the specified function + /// const std::vector<DSCallSite> *getCallSites(const Function &F) const { std::map<const Function*, std::vector<DSCallSite> >::const_iterator I = CallSites.find(&F); |