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

Chris Lattner lattner at cs.uiuc.edu
Thu Mar 24 16:06:23 PST 2005



Changes in directory llvm/lib/Analysis/DataStructure:

BottomUpClosure.cpp updated: 1.110 -> 1.111
---
Log message:

remove a debugging timer.


---
Diffs of the changes:  (+1 -4)

 BottomUpClosure.cpp |    5 +----
 1 files changed, 1 insertion(+), 4 deletions(-)


Index: llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
diff -u llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.110 llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.111
--- llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp:1.110	Thu Mar 24 18:05:04 2005
+++ llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp	Thu Mar 24 18:06:09 2005
@@ -19,7 +19,6 @@
 #include "llvm/Module.h"
 #include "llvm/ADT/Statistic.h"
 #include "llvm/Support/Debug.h"
-#include "llvm/Support/Timer.h"
 using namespace llvm;
 
 namespace {
@@ -245,8 +244,6 @@
     ValMap[NF] = ~0U;
     DSGraph &SCCGraph = getDSGraph(*NF);
 
-    { NamedRegionTimer XX("asldkfjasdf");
-
     // First thing first, collapse all of the DSGraphs into a single graph for
     // the entire SCC.  Splice all of the graphs into one and discard all of the
     // old graphs.
@@ -269,7 +266,7 @@
       ++SCCSize;
     }
     Stack.pop_back();
-    }
+
     std::cerr << "Calculating graph for SCC #: " << MyID << " of size: "
               << SCCSize << "\n";
 






More information about the llvm-commits mailing list