aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-03-21 20:28:50 +0000
committerChris Lattner <sabre@nondot.org>2005-03-21 20:28:50 +0000
commitb3439374ac144cc0ecd4fd0b238ca2d193897312 (patch)
tree8ac175fb591b546d6195580181a6001ed251ad7e /include/llvm
parenteb144f5e73d20f5bfb08bdc5a7163d8ba0fefcc4 (diff)
downloadexternal_llvm-b3439374ac144cc0ecd4fd0b238ca2d193897312.zip
external_llvm-b3439374ac144cc0ecd4fd0b238ca2d193897312.tar.gz
external_llvm-b3439374ac144cc0ecd4fd0b238ca2d193897312.tar.bz2
make this const correct
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20741 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Analysis/DataStructure/DSGraph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/DataStructure/DSGraph.h b/include/llvm/Analysis/DataStructure/DSGraph.h
index 4463d63..86f4f84 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(); }