Expand the pass to unify all of the unwind blocks as well
[oota-llvm.git] / include / llvm / Analysis / FindUsedTypes.h
index 2f3e81c5a68fe26be13dc3422b1414c42341b28d..21fcabc1902f614c83f24c4e364e53867bb09944 100644 (file)
@@ -15,39 +15,38 @@ class Type;
 class FindUsedTypes : public Pass {
   std::set<const Type *> UsedTypes;
 public:
-  // FindUsedTypes ctor - This pass can optionally include types that are
-  // referenced only in symbol tables, but the default is not to.
-  //
-  static AnalysisID ID;
-
-  // getTypes - After the pass has been run, return the set containing all of
-  // the types used in the module.
-  //
+  /// getTypes - After the pass has been run, return the set containing all of
+  /// the types used in the module.
+  ///
   const std::set<const Type *> &getTypes() const { return UsedTypes; }
 
-  // Print the types found in the module.  If the optional Module parameter is
-  // passed in, then the types are printed symbolically if possible, using the
-  // symbol table from the module.
-  //
+  /// Print the types found in the module.  If the optional Module parameter is
+  /// passed in, then the types are printed symbolically if possible, using the
+  /// symbol table from the module.
+  ///
   void print(std::ostream &o, const Module *M) const;
 
 private:
-  // IncorporateType - Incorporate one type and all of its subtypes into the
-  // collection of used types.
-  //
+  /// IncorporateType - Incorporate one type and all of its subtypes into the
+  /// collection of used types.
+  ///
   void IncorporateType(const Type *Ty);
 
 public:
-  // run - This incorporates all types used by the specified module
-  //
+  /// run - This incorporates all types used by the specified module
   bool run(Module &M);
 
-  // getAnalysisUsage - Of course, we provide ourself...
-  //
+  /// getAnalysisUsage - We do not modify anything.
   virtual void getAnalysisUsage(AnalysisUsage &AU) const {
     AU.setPreservesAll();
-    AU.addProvided(ID);
   }
+
+  // stub - dummy function, just ignore it
+  static void stub();
 };
 
+// Make sure that any clients of this file link in PostDominators.cpp
+static IncludeFile
+FIND_USED_TYPES_INCLUDE_FILE((void*)&FindUsedTypes::stub);
+
 #endif