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

Chris Lattner lattner at cs.uiuc.edu
Mon Mar 21 01:39:34 PST 2005



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

DSGraph.h updated: 1.96 -> 1.97
---
Log message:

Make the first operand of this method be modifiable.


---
Diffs of the changes:  (+1 -1)

 DSGraph.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/Analysis/DataStructure/DSGraph.h
diff -u llvm/include/llvm/Analysis/DataStructure/DSGraph.h:1.96 llvm/include/llvm/Analysis/DataStructure/DSGraph.h:1.97
--- llvm/include/llvm/Analysis/DataStructure/DSGraph.h:1.96	Sat Mar 19 22:30:16 2005
+++ llvm/include/llvm/Analysis/DataStructure/DSGraph.h	Mon Mar 21 03:39:20 2005
@@ -560,7 +560,7 @@
   /// mergeCallSite - Merge the nodes reachable from the specified src call
   /// site into the nodes reachable from DestCS.
   ///
-  void mergeCallSite(const DSCallSite &DestCS, const DSCallSite &SrcCS);
+  void mergeCallSite(DSCallSite &DestCS, const DSCallSite &SrcCS);
 
   bool clonedAnyNodes() const { return !NodeMap.empty(); }
 






More information about the llvm-commits mailing list