aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Dominators.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-21 17:09:15 +0000
committerChris Lattner <sabre@nondot.org>2002-08-21 17:09:15 +0000
commit607ace696b17036a7f23e4c1936b7ed2e87d3647 (patch)
treef8c5b7f0462677f2fc5e5da152ee90e07218d231 /lib/VMCore/Dominators.cpp
parentfb30fda1de96251017ae092f469de4b290b6b61b (diff)
downloadexternal_llvm-607ace696b17036a7f23e4c1936b7ed2e87d3647.zip
external_llvm-607ace696b17036a7f23e4c1936b7ed2e87d3647.tar.gz
external_llvm-607ace696b17036a7f23e4c1936b7ed2e87d3647.tar.bz2
- Do not expose ::ID from any of the analyses anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3415 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Dominators.cpp')
-rw-r--r--lib/VMCore/Dominators.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/VMCore/Dominators.cpp b/lib/VMCore/Dominators.cpp
index f5010c3..e4bcec0 100644
--- a/lib/VMCore/Dominators.cpp
+++ b/lib/VMCore/Dominators.cpp
@@ -20,7 +20,6 @@ using std::set;
static RegisterAnalysis<DominatorSet>
A("domset", "Dominator Set Construction", true);
-AnalysisID DominatorSet::ID = A;
// dominates - Return true if A dominates B. This performs the special checks
// neccesary if A and B are in the same basic block.
@@ -117,7 +116,6 @@ void DominatorSetBase::print(std::ostream &o) const {
static RegisterAnalysis<ImmediateDominators>
C("idom", "Immediate Dominators Construction", true);
-AnalysisID ImmediateDominators::ID = C;
// calcIDoms - Calculate the immediate dominator mapping, given a set of
// dominators for every basic block.
@@ -169,7 +167,6 @@ void ImmediateDominatorsBase::print(std::ostream &o) const {
static RegisterAnalysis<DominatorTree>
E("domtree", "Dominator Tree Construction", true);
-AnalysisID DominatorTree::ID = E;
// DominatorTreeBase::reset - Free all of the tree node memory.
//
@@ -254,7 +251,6 @@ void DominatorTreeBase::print(std::ostream &o) const {
static RegisterAnalysis<DominanceFrontier>
G("domfrontier", "Dominance Frontier Construction", true);
-AnalysisID DominanceFrontier::ID = G;
const DominanceFrontier::DomSetType &
DominanceFrontier::calculate(const DominatorTree &DT,