Supply a default 'operator=' method.
[oota-llvm.git] / include / llvm / Analysis / Passes.h
index a22bd12dec1e84a128e5038260a017231c35d9ab..c127830e0e53bee75300c570f4902f63c2b48c7f 100644 (file)
@@ -101,6 +101,14 @@ namespace llvm {
   ModulePass *createProfileLoaderPass();
   extern char &ProfileLoaderPassID;
 
+  //===--------------------------------------------------------------------===//
+  //
+  // createProfileMetadataLoaderPass - This pass loads information from a
+  // profile dump file and sets branch weight metadata.
+  //
+  ModulePass *createProfileMetadataLoaderPass();
+  extern char &ProfileMetadataLoaderPassID;
+
   //===--------------------------------------------------------------------===//
   //
   // createNoProfileInfoPass - This pass implements the default "no profile".
@@ -170,6 +178,13 @@ namespace llvm {
   /// pass.
   FunctionPass *createLazyValueInfoPass();
 
+  //===--------------------------------------------------------------------===//
+  //
+  // createDependenceAnalysisPass - This creates an instance of the
+  // DependenceAnalysis pass.
+  //
+  FunctionPass *createDependenceAnalysisPass();
+
   //===--------------------------------------------------------------------===//
   //
   // createLoopDependenceAnalysisPass - This creates an instance of the
@@ -177,6 +192,8 @@ namespace llvm {
   //
   LoopPass *createLoopDependenceAnalysisPass();
 
+  //===--------------------------------------------------------------------===//
+  //
   // Minor pass prototypes, allowing us to expose them through bugpoint and
   // analyze.
   FunctionPass *createInstCountPass();