diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-21 17:09:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-21 17:09:49 +0000 |
commit | 546b027b3ee0ed3a8c5e551a7e13fc8a1775ede9 (patch) | |
tree | 6bd9460480d9f6d865af753d8dbc2a083caf6413 /lib/Analysis/PostDominators.cpp | |
parent | 044f9087915168efb7ab4faf3a1a1ca6b1ca4a82 (diff) |
- Do not expose ::ID from any of the analyses anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3417 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/PostDominators.cpp')
-rw-r--r-- | lib/Analysis/PostDominators.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Analysis/PostDominators.cpp b/lib/Analysis/PostDominators.cpp index 2e49854249..c3320ee3db 100644 --- a/lib/Analysis/PostDominators.cpp +++ b/lib/Analysis/PostDominators.cpp @@ -17,7 +17,6 @@ using std::set; static RegisterAnalysis<PostDominatorSet> B("postdomset", "Post-Dominator Set Construction", true); -AnalysisID PostDominatorSet::ID = B; // Postdominator set construction. This converts the specified function to only // have a single exit node (return stmt), then calculates the post dominance @@ -88,7 +87,6 @@ void PostDominatorSet::getAnalysisUsage(AnalysisUsage &AU) const { static RegisterAnalysis<ImmediatePostDominators> D("postidom", "Immediate Post-Dominators Construction", true); -AnalysisID ImmediatePostDominators::ID = D; //===----------------------------------------------------------------------===// // PostDominatorTree Implementation @@ -96,7 +94,6 @@ AnalysisID ImmediatePostDominators::ID = D; static RegisterAnalysis<PostDominatorTree> F("postdomtree", "Post-Dominator Tree Construction", true); -AnalysisID PostDominatorTree::ID = F; void PostDominatorTree::calculate(const PostDominatorSet &DS) { Nodes[Root] = new Node(Root, 0); // Add a node for the root... @@ -152,7 +149,6 @@ void PostDominatorTree::calculate(const PostDominatorSet &DS) { static RegisterAnalysis<PostDominanceFrontier> H("postdomfrontier", "Post-Dominance Frontier Construction", true); -AnalysisID PostDominanceFrontier::ID = H; const DominanceFrontier::DomSetType & PostDominanceFrontier::calculate(const PostDominatorTree &DT, |