summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/DataStructure
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-06 06:16:30 +0000
committerChris Lattner <sabre@nondot.org>2002-11-06 06:16:30 +0000
commit230f6926b0717828967dc3cdb3325fdb3ea075b9 (patch)
tree0ec716a19ab54d39fb2687eb52580665576b6ff5 /llvm/lib/Analysis/DataStructure
parent5f827fa57be5ee9b4423ffa7e23c04d081792b65 (diff)
downloadbcm5719-llvm-230f6926b0717828967dc3cdb3325fdb3ea075b9.tar.gz
bcm5719-llvm-230f6926b0717828967dc3cdb3325fdb3ea075b9.zip
Delete "StripScalars" argument to cloneInto method
llvm-svn: 4560
Diffstat (limited to 'llvm/lib/Analysis/DataStructure')
-rw-r--r--llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp1
-rw-r--r--llvm/lib/Analysis/DataStructure/TopDownClosure.cpp1
2 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
index 6b70490feb7..a1f739c4e84 100644
--- a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
+++ b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
@@ -160,7 +160,6 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) {
// The clone call may invalidate any of the vectors in the data
// structure graph. Strip locals and don't copy the list of callers
DSNodeHandle RetVal = Graph->cloneInto(GI, OldValMap, OldNodeMap,
- /*StripScalars*/ true,
/*StripAllocas*/ true);
// Resolve the arguments in the call to the actual values...
diff --git a/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp b/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp
index 7fdc33bb337..cca6c16cefb 100644
--- a/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp
+++ b/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp
@@ -176,7 +176,6 @@ DSGraph &TDDataStructures::calculateGraph(Function &F) {
// Strip scalars but not allocas since they are alive in callee.
//
DSNodeHandle RetVal = Graph->cloneInto(CG, OldValMap, OldNodeMap,
- /*StripScalars*/ true,
/*StripAllocas*/ false);
ResolveCallSite(*Graph, DSCallSite(CallSiteInCG, OldNodeMap));
}
OpenPOWER on IntegriCloud