From a44fb0d3621aa818819a074d54d0e9e88fd51967 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 9 Feb 2004 21:01:23 +0000 Subject: Remove the statistics git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11243 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Type.cpp | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'lib/VMCore/Type.cpp') diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index 11b3450..9a40457 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -17,15 +17,9 @@ #include "Support/DepthFirstIterator.h" #include "Support/StringExtras.h" #include "Support/STLExtras.h" -#include "Support/Statistic.h" #include - using namespace llvm; -static Statistic<> NumSlowTypes("type", "num slow types"); -static Statistic<> NumTypeEqualsCalls("type", "num typeequals calls"); -static Statistic<> NumTypeEquals("type", "num types actually equal"); - // DEBUG_MERGE_TYPES - Enable this #define to see how and when derived types are // created and later destroyed, all in an effort to make sure that there is only // a single canonical version of a type. @@ -657,8 +651,6 @@ public: } } else { - ++NumSlowTypes; - // Now we check to see if there is an existing entry in the table which is // structurally identical to the newly refined type. If so, this type // gets refined to the pre-existing type. @@ -667,11 +659,8 @@ public: tie(I, E) = TypesByHash.equal_range(TypeHash); Entry = E; for (; I != E; ++I) { - ++NumTypeEqualsCalls; if (I->second != Ty) { if (TypesEqual(Ty, I->second)) { - ++NumTypeEquals; - assert(Ty->isAbstract() && "Replacing a non-abstract type?"); TypeClass *NewTy = cast((Type*)I->second.get()); -- cgit v1.1