aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/DataStructure/TopDownClosure.cpp
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
commitef5af99195193993ff8563c0cc332e5c5dd261c9 (patch)
tree52c27f694e9f02947b59d8a412ea7767c90949c2 /lib/Analysis/DataStructure/TopDownClosure.cpp
parent6d37acb052065c07b46110d521d8d055c2d4fbf1 (diff)
Delete "StripScalars" argument to cloneInto method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4560 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/TopDownClosure.cpp')
-rw-r--r--lib/Analysis/DataStructure/TopDownClosure.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/TopDownClosure.cpp b/lib/Analysis/DataStructure/TopDownClosure.cpp
index 7fdc33bb33..cca6c16cef 100644
--- a/lib/Analysis/DataStructure/TopDownClosure.cpp
+++ b/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));
}