*** empty log message ***


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3105 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/analyze/analyze.cpp b/tools/analyze/analyze.cpp
index 7373741..7a8c36a 100644
--- a/tools/analyze/analyze.cpp
+++ b/tools/analyze/analyze.cpp
@@ -116,10 +116,6 @@
 
 
 
-template <class PassType, class PassName, AnalysisID &ID>
-Pass *New() {
-  return new PassPrinter<PassType, PassName>(ID);
-}
 template <class PassType, class PassName>
 Pass *New() {
   return new PassPrinter<PassType, PassName>(PassName::ID);
@@ -295,10 +291,10 @@
   { domtree           , New<FunctionPass, DominatorTree>       },
   { domfrontier       , New<FunctionPass, DominanceFrontier>   },
 
-  { postdomset        , New<FunctionPass, DominatorSet, DominatorSet::PostDomID> },
-  { postidom          , New<FunctionPass, ImmediateDominators, ImmediateDominators::PostDomID> },
-  { postdomtree       , New<FunctionPass, DominatorTree, DominatorTree::PostDomID> },
-  { postdomfrontier   , New<FunctionPass, DominanceFrontier, DominanceFrontier::PostDomID> },
+  { postdomset        , New<FunctionPass, PostDominatorSet>        },
+  { postidom          , New<FunctionPass, ImmediatePostDominators> },
+  { postdomtree       , New<FunctionPass, PostDominatorTree>       },
+  { postdomfrontier   , New<FunctionPass, PostDominanceFrontier>   },
 };
 
 int main(int argc, char **argv) {