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 | 20da24c4b9e42fbef32e8f7fec3cc6bf1928df23 (patch) | |
tree | 7f27fd70bf0c226bb0b50b205e782de9dc7e9760 /lib/Analysis/DataStructure/BottomUpClosure.cpp | |
parent | b2dbdc13012b961463a6e5f22105934d08fd780b (diff) |
remove a debugging timer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20827 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/BottomUpClosure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/BottomUpClosure.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index b97e864907..f585329a33 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/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"; |