1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Be more const-correct

llvm-svn: 7005
This commit is contained in:
Chris Lattner 2003-06-30 05:27:18 +00:00
parent 6de58997b5
commit e40d871120

View File

@ -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;