From ef5af99195193993ff8563c0cc332e5c5dd261c9 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 6 Nov 2002 06:16:30 +0000 Subject: [PATCH] Delete "StripScalars" argument to cloneInto method git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4560 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/DataStructure/BottomUpClosure.cpp | 1 - lib/Analysis/DataStructure/TopDownClosure.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index 6b70490feb7..a1f739c4e84 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/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/lib/Analysis/DataStructure/TopDownClosure.cpp b/lib/Analysis/DataStructure/TopDownClosure.cpp index 7fdc33bb337..cca6c16cefb 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)); }