[llvm-commits] CVS: llvm/include/llvm/Analysis/DSGraph.h
Chris Lattner
lattner at cs.uiuc.edu
Tue Mar 9 13:38:06 PST 2004
Changes in directory llvm/include/llvm/Analysis:
DSGraph.h updated: 1.78 -> 1.79
---
Log message:
new method
---
Diffs of the changes: (+4 -0)
Index: llvm/include/llvm/Analysis/DSGraph.h
diff -u llvm/include/llvm/Analysis/DSGraph.h:1.78 llvm/include/llvm/Analysis/DSGraph.h:1.79
--- llvm/include/llvm/Analysis/DSGraph.h:1.78 Wed Mar 3 16:00:20 2004
+++ llvm/include/llvm/Analysis/DSGraph.h Tue Mar 9 13:36:59 2004
@@ -360,6 +360,10 @@
///
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) &&
More information about the llvm-commits
mailing list