diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-30 05:27:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-30 05:27:18 +0000 |
commit | 9f93055253c9f16afbaf008bbe5fc1652d1085a4 (patch) | |
tree | c356121410810d8283fcf3d1b607bc4e9a9d3236 /lib/Analysis/DataStructure/DataStructure.cpp | |
parent | 332f0aa425c3ac240e02c455beaae2ee5ae58d5c (diff) |
Be more const-correct
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7005 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/DataStructure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/DataStructure.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/DataStructure/DataStructure.cpp b/lib/Analysis/DataStructure/DataStructure.cpp index c25c8d275c..fbd223f71b 100644 --- a/lib/Analysis/DataStructure/DataStructure.cpp +++ b/lib/Analysis/DataStructure/DataStructure.cpp @@ -826,8 +826,8 @@ void DSGraph::cloneInto(const DSGraph &G, ScalarMapTy &OldValMap, /// merges the nodes specified in the call site with the formal arguments in the /// graph. /// -void DSGraph::mergeInGraph(DSCallSite &CS, Function &F, const DSGraph &Graph, - unsigned CloneFlags) { +void DSGraph::mergeInGraph(const DSCallSite &CS, Function &F, + const DSGraph &Graph, unsigned CloneFlags) { ScalarMapTy OldValMap, *ScalarMap; DSNodeHandle RetVal; |