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

Chris Lattner lattner at cs.uiuc.edu
Mon Jun 30 00:28:02 PDT 2003


Changes in directory llvm/include/llvm/Analysis:

DSGraph.h updated: 1.52 -> 1.53

---
Log message:

Be more const correct


---
Diffs of the changes:

Index: llvm/include/llvm/Analysis/DSGraph.h
diff -u llvm/include/llvm/Analysis/DSGraph.h:1.52 llvm/include/llvm/Analysis/DSGraph.h:1.53
--- llvm/include/llvm/Analysis/DSGraph.h:1.52	Sun Jun 29 22:14:23 2003
+++ llvm/include/llvm/Analysis/DSGraph.h	Mon Jun 30 00:27:05 2003
@@ -211,7 +211,7 @@
   /// the graph.  If the StripAlloca's argument is 'StripAllocaBit' then Alloca
   /// markers are removed from nodes.
   ///
-  void mergeInGraph(DSCallSite &CS, Function &F, const DSGraph &Graph,
+  void mergeInGraph(const DSCallSite &CS, Function &F, const DSGraph &Graph,
                     unsigned CloneFlags);
 
   // Methods for checking to make sure graphs are well formed...





More information about the llvm-commits mailing list