[llvm-commits] CVS: llvm/include/llvm/Analysis/DSGraph.h

Chris Lattner lattner at cs.uiuc.edu
Mon Jun 30 00:58:06 PDT 2003


Changes in directory llvm/include/llvm/Analysis:

DSGraph.h updated: 1.53 -> 1.54

---
Log message:

Add new method


---
Diffs of the changes:

Index: llvm/include/llvm/Analysis/DSGraph.h
diff -u llvm/include/llvm/Analysis/DSGraph.h:1.53 llvm/include/llvm/Analysis/DSGraph.h:1.54
--- llvm/include/llvm/Analysis/DSGraph.h:1.53	Mon Jun 30 00:27:05 2003
+++ llvm/include/llvm/Analysis/DSGraph.h	Mon Jun 30 00:57:18 2003
@@ -80,6 +80,10 @@
   const std::vector<DSNode*> &getNodes() const { return Nodes; }
         std::vector<DSNode*> &getNodes()       { return Nodes; }
 
+  /// getFunctionNames - Return a space separated list of the name of the
+  /// functions in this graph (if any)
+  std::string getFunctionNames() const;
+
   /// addNode - Add a new node to the graph.
   ///
   void addNode(DSNode *N) { Nodes.push_back(N); }





More information about the llvm-commits mailing list