remove a debugging timer.
authorChris Lattner <sabre@nondot.org>
Fri, 25 Mar 2005 00:06:09 +0000 (00:06 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 25 Mar 2005 00:06:09 +0000 (00:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20827 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/BottomUpClosure.cpp

index b97e8649075827ccc9f7089138895d42a969b12c..f585329a33fd23dfba1b9cdebc462ec20a6d0827 100644 (file)
@@ -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 @@ unsigned BUDataStructures::calculateGraphs(Function *F,
     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 @@ unsigned BUDataStructures::calculateGraphs(Function *F,
       ++SCCSize;
     }
     Stack.pop_back();
-    }
+
     std::cerr << "Calculating graph for SCC #: " << MyID << " of size: "
               << SCCSize << "\n";