[llvm-commits] CVS: llvm/include/llvm/Analysis/DSGraph.h
Chris Lattner
lattner at cs.uiuc.edu
Mon Oct 21 14:51:01 PDT 2002
Changes in directory llvm/include/llvm/Analysis:
DSGraph.h updated: 1.18 -> 1.19
---
Log message:
Delete unused arguments to DSGraph::cloneInto method
---
Diffs of the changes:
Index: llvm/include/llvm/Analysis/DSGraph.h
diff -u llvm/include/llvm/Analysis/DSGraph.h:1.18 llvm/include/llvm/Analysis/DSGraph.h:1.19
--- llvm/include/llvm/Analysis/DSGraph.h:1.18 Mon Oct 21 14:47:14 2002
+++ llvm/include/llvm/Analysis/DSGraph.h Mon Oct 21 14:50:27 2002
@@ -579,14 +579,11 @@
// is filled into the OldValMap member.
// If StripScalars (StripAllocas) is set to true, Scalar (Alloca) markers
// are removed from the graph as the graph is being cloned.
- // If CopyCallers is set to true, the PendingCallers list is copied.
- // If CopyOrigCalls is set to true, the OrigFunctionCalls list is copied.
//
DSNodeHandle cloneInto(const DSGraph &G,
std::map<Value*, DSNodeHandle> &OldValMap,
std::map<const DSNode*, DSNode*> &OldNodeMap,
- bool StripScalars = false, bool StripAllocas = false,
- bool CopyCallers = true, bool CopyOrigCalls = true);
+ bool StripScalars = false, bool StripAllocas = false);
#if 0
// cloneGlobalInto - Clone the given global node (or the node for the given
More information about the llvm-commits
mailing list