[llvm-commits] CVS: llvm/lib/Analysis/DataStructure/TopDownClosure.cpp BottomUpClosure.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed Nov 6 00:17:04 PST 2002


Changes in directory llvm/lib/Analysis/DataStructure:

TopDownClosure.cpp updated: 1.17 -> 1.18
BottomUpClosure.cpp updated: 1.30 -> 1.31

---
Log message:

Delete "StripScalars" argument to cloneInto method


---
Diffs of the changes:

Index: llvm/lib/Analysis/DataStructure/TopDownClosure.cpp
diff -u llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.17 llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.18
--- llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.17	Tue Oct 22 11:01:03 2002
+++ llvm/lib/Analysis/DataStructure/TopDownClosure.cpp	Wed Nov  6 00:16:30 2002
@@ -176,7 +176,6 @@
       // 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));
     }


Index: llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
diff -u llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.30 llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.31
--- llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.30	Sun Nov  3 20:29:15 2002
+++ llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp	Wed Nov  6 00:16:30 2002
@@ -160,7 +160,6 @@
             // 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...





More information about the llvm-commits mailing list