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

Chris Lattner lattner at cs.uiuc.edu
Fri Nov 8 16:28:00 PST 2002


Changes in directory llvm/lib/Analysis/DataStructure:

BottomUpClosure.cpp updated: 1.35 -> 1.36

---
Log message:

ONLY merge in the aux call sites, this causes a HUGE speedup


---
Diffs of the changes:

Index: llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
diff -u llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.35 llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.36
--- llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.35	Fri Nov  8 15:25:24 2002
+++ llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp	Fri Nov  8 16:27:25 2002
@@ -112,7 +112,8 @@
                   << " in: " << F.getName() << "\n");
 
             // Handle self recursion by resolving the arguments and return value
-            Graph->mergeInGraph(Call, GI, DSGraph::StripAllocaBit);
+            Graph->mergeInGraph(Call, GI, DSGraph::StripAllocaBit |
+                                DSGraph::DontCloneCallNodes);
 
             // Erase the entry in the Callees vector
             Callees.erase(Callees.begin()+c--);





More information about the llvm-commits mailing list