diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-08-21 17:09:15 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-08-21 17:09:15 +0000 | 
| commit | 1230f23da80c3f8913ad92f6b9fb4ca01ddff1d2 (patch) | |
| tree | aac0503491de0a28451fd12cba96e89a71e9b534 /llvm | |
| parent | 4b16963ca2d4bac95161196b5a4100ceef28683c (diff) | |
| download | bcm5719-llvm-1230f23da80c3f8913ad92f6b9fb4ca01ddff1d2.tar.gz bcm5719-llvm-1230f23da80c3f8913ad92f6b9fb4ca01ddff1d2.zip  | |
  - Do not expose ::ID from any of the analyses anymore.
llvm-svn: 3415
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/VMCore/Dominators.cpp | 4 | 
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/VMCore/Dominators.cpp b/llvm/lib/VMCore/Dominators.cpp index f5010c301cd..e4bcec09f1f 100644 --- a/llvm/lib/VMCore/Dominators.cpp +++ b/llvm/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,   | 

