[llvm-commits] CVS: llvm/include/llvm/Analysis/DataStructure/DSGraph.h
Chris Lattner
lattner at cs.uiuc.edu
Mon Mar 21 16:29:53 PST 2005
Changes in directory llvm/include/llvm/Analysis/DataStructure:
DSGraph.h updated: 1.102 -> 1.103
---
Log message:
now that the second argument is always this->ReturnNodes, don't bother passing it.
---
Diffs of the changes: (+1 -2)
DSGraph.h | 3 +--
1 files changed, 1 insertion(+), 2 deletions(-)
Index: llvm/include/llvm/Analysis/DataStructure/DSGraph.h
diff -u llvm/include/llvm/Analysis/DataStructure/DSGraph.h:1.102 llvm/include/llvm/Analysis/DataStructure/DSGraph.h:1.103
--- llvm/include/llvm/Analysis/DataStructure/DSGraph.h:1.102 Mon Mar 21 18:20:56 2005
+++ llvm/include/llvm/Analysis/DataStructure/DSGraph.h Mon Mar 21 18:29:40 2005
@@ -454,8 +454,7 @@
///
/// The CloneFlags member controls various aspects of the cloning process.
///
- void cloneInto(const DSGraph &G,
- ReturnNodesTy &OldReturnNodes, NodeMapTy &OldNodeMap,
+ void cloneInto(const DSGraph &G, NodeMapTy &OldNodeMap,
unsigned CloneFlags = 0);
/// getFunctionArgumentsForCall - Given a function that is currently in this
More information about the llvm-commits
mailing list