[llvm-commits] CVS: llvm/include/llvm/Analysis/DataStructure/DSGraph.h
Chris Lattner
lattner at cs.uiuc.edu
Mon Mar 21 02:00:50 PST 2005
Changes in directory llvm/include/llvm/Analysis/DataStructure:
DSGraph.h updated: 1.97 -> 1.98
---
Log message:
Ugh, for some reason, I can't call this unless the reference is const!?!?!?
---
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.97 llvm/include/llvm/Analysis/DataStructure/DSGraph.h:1.98
--- llvm/include/llvm/Analysis/DataStructure/DSGraph.h:1.97 Mon Mar 21 03:39:20 2005
+++ llvm/include/llvm/Analysis/DataStructure/DSGraph.h Mon Mar 21 04:00:34 2005
@@ -560,7 +560,7 @@
/// mergeCallSite - Merge the nodes reachable from the specified src call
/// site into the nodes reachable from DestCS.
///
- void mergeCallSite(DSCallSite &DestCS, const DSCallSite &SrcCS);
+ void mergeCallSite(const DSCallSite &DestCS, const DSCallSite &SrcCS);
bool clonedAnyNodes() const { return !NodeMap.empty(); }
More information about the llvm-commits
mailing list