new method

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12263 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-03-09 19:36:59 +00:00
parent 6a367f33f3
commit 69a69ff5fd
2 changed files with 8 additions and 0 deletions

View File

@ -360,6 +360,10 @@ public:
///
DSCallSite getCallSiteForArguments(Function &F) const;
/// getDSCallSiteForCallSite - Given an LLVM CallSite object that is live in
/// the context of this graph, return the DSCallSite for it.
DSCallSite getDSCallSiteForCallSite(CallSite CS) const;
// Methods for checking to make sure graphs are well formed...
void AssertNodeInGraph(const DSNode *N) const {
assert((!N || N->getParentGraph() == this) &&

View File

@ -360,6 +360,10 @@ public:
///
DSCallSite getCallSiteForArguments(Function &F) const;
/// getDSCallSiteForCallSite - Given an LLVM CallSite object that is live in
/// the context of this graph, return the DSCallSite for it.
DSCallSite getDSCallSiteForCallSite(CallSite CS) const;
// Methods for checking to make sure graphs are well formed...
void AssertNodeInGraph(const DSNode *N) const {
assert((!N || N->getParentGraph() == this) &&