From 38d807ea8bfa5df951bcf548aef464ea48ff9370 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 21 Mar 2005 09:39:20 +0000 Subject: [PATCH] Make the first operand of this method be modifiable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20730 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/DataStructure/DSGraph.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Analysis/DataStructure/DSGraph.h b/include/llvm/Analysis/DataStructure/DSGraph.h index 4463d638def..86f4f84a93a 100644 --- a/include/llvm/Analysis/DataStructure/DSGraph.h +++ b/include/llvm/Analysis/DataStructure/DSGraph.h @@ -560,7 +560,7 @@ public: /// 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(); }