summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-03-22 00:20:56 +0000
committerChris Lattner <sabre@nondot.org>2005-03-22 00:20:56 +0000
commit077531385e0145b3657173de0939e9b4b360538d (patch)
treea1ffbad46ffb2fe0ca223814d48b7be56045c1bc /include
parent24c47c5c459e91fab9865cf1b60ed527d0081f99 (diff)
downloadllvm-077531385e0145b3657173de0939e9b4b360538d.tar.gz
llvm-077531385e0145b3657173de0939e9b4b360538d.tar.bz2
llvm-077531385e0145b3657173de0939e9b4b360538d.tar.xz
drop the second argument to cloneInto, which is always the local scalar map.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20753 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-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 a7ac6663eb..a0d06add3b 100644
--- a/include/llvm/Analysis/DataStructure/DSGraph.h
+++ b/include/llvm/Analysis/DataStructure/DSGraph.h
@@ -454,7 +454,7 @@ public:
///
/// The CloneFlags member controls various aspects of the cloning process.
///
- void cloneInto(const DSGraph &G, ScalarMapTy &OldValMap,
+ void cloneInto(const DSGraph &G,
ReturnNodesTy &OldReturnNodes, NodeMapTy &OldNodeMap,
unsigned CloneFlags = 0);