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

Chris Lattner lattner at cs.uiuc.edu
Sat Mar 19 19:29:55 PST 2005



Changes in directory llvm/include/llvm/Analysis/DataStructure:

DSNode.h updated: 1.52 -> 1.53
---
Log message:

add a method


---
Diffs of the changes:  (+5 -0)

 DSNode.h |    5 +++++
 1 files changed, 5 insertions(+)


Index: llvm/include/llvm/Analysis/DataStructure/DSNode.h
diff -u llvm/include/llvm/Analysis/DataStructure/DSNode.h:1.52 llvm/include/llvm/Analysis/DataStructure/DSNode.h:1.53
--- llvm/include/llvm/Analysis/DataStructure/DSNode.h:1.52	Sat Mar 19 20:38:39 2005
+++ llvm/include/llvm/Analysis/DataStructure/DSNode.h	Sat Mar 19 21:29:39 2005
@@ -283,6 +283,11 @@
   /// also marks the node with the 'G' flag if it does not already have it.
   ///
   void addGlobal(GlobalValue *GV);
+
+  /// removeGlobal - Remove the specified global that is explicitly in the
+  /// globals list.
+  void removeGlobal(GlobalValue *GV);
+
   void mergeGlobals(const std::vector<GlobalValue*> &RHS);
   void clearGlobals() { std::vector<GlobalValue*>().swap(Globals); }
 






More information about the llvm-commits mailing list