diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-21 10:00:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-21 10:00:45 +0000 |
commit | c26f6d3899dd116f73d6c11fc2acb21d78e5ab3d (patch) | |
tree | 47edf2452c2b847e2ddc867581833adfcdec3bc9 /include/llvm/Analysis/DataStructure/DSGraph.h | |
parent | 3f90a94c5dcb2fe1aae705f66684b3902f5ec8d6 (diff) |
Ugh, for some reason, I can't call this unless the reference is const!?!?!?
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20732 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 86f4f84a93..4463d638de 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(DSCallSite &DestCS, const DSCallSite &SrcCS); + void mergeCallSite(const DSCallSite &DestCS, const DSCallSite &SrcCS); bool clonedAnyNodes() const { return !NodeMap.empty(); } |