diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-25 00:06:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-25 00:06:09 +0000 |
commit | 3322e28f75c5e6c36d5dc47ee529d3d4a38a4869 (patch) | |
tree | 82673213ebf48ce35d19ba5b594509831698a7bd /llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp | |
parent | 278bac843ce866eb89a76ab3aad432542f8f3666 (diff) | |
download | bcm5719-llvm-3322e28f75c5e6c36d5dc47ee529d3d4a38a4869.tar.gz bcm5719-llvm-3322e28f75c5e6c36d5dc47ee529d3d4a38a4869.zip |
remove a debugging timer.
llvm-svn: 20827
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp index b97e8649075..f585329a33f 100644 --- a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -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"; |