diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-21 09:39:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-21 09:39:20 +0000 |
commit | 38d807ea8bfa5df951bcf548aef464ea48ff9370 (patch) | |
tree | edb1457ab42c7eb9a5bdf52bd34519189e50c266 /include/llvm/Analysis/DataStructure/DSGraph.h | |
parent | 2c012590d74e9f44bc75b29a3743d01dae5c14ee (diff) |
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
Diffstat (limited to 'include/llvm/Analysis/DataStructure/DSGraph.h')
-rw-r--r-- | include/llvm/Analysis/DataStructure/DSGraph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/DataStructure/DSGraph.h b/include/llvm/Analysis/DataStructure/DSGraph.h index 4463d638de..86f4f84a93 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(); } |