Delete "StripScalars" argument to cloneInto method
authorChris Lattner <sabre@nondot.org>
Wed, 6 Nov 2002 06:16:30 +0000 (06:16 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 6 Nov 2002 06:16:30 +0000 (06:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4560 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/BottomUpClosure.cpp
lib/Analysis/DataStructure/TopDownClosure.cpp

index 6b70490feb731dbfebdc86698f534131930553bf..a1f739c4e84e28efb225a89f1644bd54a7792961 100644 (file)
@@ -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...
index 7fdc33bb337ab52fc789ddcfdee8cffdefe71449..cca6c16cefb12fa109c390f6b8a83a466ac21d3f 100644 (file)
@@ -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));
     }