diff options
| author | Chris Lattner <sabre@nondot.org> | 2005-03-22 00:20:56 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2005-03-22 00:20:56 +0000 |
| commit | d22030f8db9554abc85c9d49139a8034e9c70226 (patch) | |
| tree | 15271b67ee611c7537ad10c723483c935475f626 | |
| parent | 03b7f993385a20c869b94c544dccf820e13d3fe6 (diff) | |
| download | bcm5719-llvm-d22030f8db9554abc85c9d49139a8034e9c70226.tar.gz bcm5719-llvm-d22030f8db9554abc85c9d49139a8034e9c70226.zip | |
drop the second argument to cloneInto, which is always the local scalar map.
llvm-svn: 20753
| -rw-r--r-- | llvm/include/llvm/Analysis/DataStructure/DSGraph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Analysis/DataStructure/DSGraph.h b/llvm/include/llvm/Analysis/DataStructure/DSGraph.h index a7ac6663eb4..a0d06add3b9 100644 --- a/llvm/include/llvm/Analysis/DataStructure/DSGraph.h +++ b/llvm/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); |

