Add LLVMGCCDIR for path lookup
[oota-llvm.git] / include / llvm / PassManager.h
index 14463ffed1a2d8bdbabed87a7b506803848b41a1..1b77c875d915ceb63892d0053a0883dfa8d209d5 100644 (file)
@@ -1,4 +1,11 @@
 //===- llvm/PassManager.h - Container for Passes ----------------*- C++ -*-===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This file defines the PassManager class.  This class is used to hold,
 // maintain, and optimize execution of Passes.  The PassManager class ensures
 #ifndef LLVM_PASSMANAGER_H
 #define LLVM_PASSMANAGER_H
 
+namespace llvm {
+
 class Pass;
+class ModulePass;
 class Module;
 class ModuleProvider;
 template<class UnitType> class PassManagerT;
@@ -65,4 +75,6 @@ public:
   bool run(Function &F);
 };
 
+} // End llvm namespace
+
 #endif