Add default index functor (an identity functor). You could use a
[oota-llvm.git] / include / llvm / Transforms / Instrumentation.h
index a6e08d30843885f61423eff071cb0fb9034050b5..035b8d1e0c1476ea789f55d9bd4ebd1c3af1a730 100644 (file)
@@ -1,4 +1,11 @@
 //===- Transforms/Instrumentation.h - Instrumentation 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 files defines constructor functions for instrumentation passes.
 //
@@ -7,6 +14,8 @@
 #ifndef LLVM_TRANSFORMS_INSTRUMENTATION_H
 #define LLVM_TRANSFORMS_INSTRUMENTATION_H
 
+namespace llvm {
+
 class Pass;
 
 //===----------------------------------------------------------------------===//
@@ -16,4 +25,6 @@ class Pass;
 Pass *createTraceValuesPassForFunction();     // Just trace function entry/exit
 Pass *createTraceValuesPassForBasicBlocks();  // Trace BB's and methods
 
+} // End llvm namespace
+
 #endif